7.5.2 Guards

match guard는 필터로서 사용할 수 있다.

fn main() {
    let pair = (2, -2);
    // TODO ^ `pair`에 다른 값을 입력해보세요. 

    println!("Tell me about {:?}", pair);
    match pair {
        (x, y) if x == y => println!("These are twins"),
        // 이  ^ `if 조건문`이 guard 부분이다. 
        (x, y) if x + y == 0 => println!("Antimatter, kaboom!"),
        (x, _) if x % 2 == 1 => println!("The first one is odd"),
        _ => println!("No correlation..."),
    }
}

See also:

Tuples

results matching ""

    No results matching ""