https://docs.swift.org/swift-book/LanguageGuide/ControlFlow.html#ID134 swift 공식문서에서 switch where 키워드 관련 부분 swift의 switch 문에서는 아래처럼 case에 tuple을 사용할 수도 있고 변수에 튜플 값을 바인딩 할 수도 있고(x, y에 튜플 값이 하나씩 들어감) where 키워드를 사용하여 case 안에서 또 다른 조건을 추가할 수 있다. // 출처: https://docs.swift.org/swift-book/LanguageGuide/ControlFlow.html#ID134 let yetAnotherPoint = (1, -1) switch yetAnotherPoint { case let(x,y) where x ==..