Avatar
パターンマッチ関連のおもしろ記法と言えば前に教えてもらった↓かなぁ。 let a: Int? = 42 if case let a? = a { print(a) }
9:28 AM
Optional Binding よりも意味がわかりやすい。