I have two questions about matching optionals in a switch statement. Apparently an Int? can be matched against non-optional integer literals or non-optional integer expressions: let x: Int? = 1 switch x { case 1: print("one") case 1?: print("one?") case 1+2: print("one+two...