Avatar
ところで、この & の記法ややこしすぎませんか。 func foo(_ x: UnsafePointer<Int>) { print(x.pointee) } var a = 42 foo(&a) var b = [42] foo(&b) 42 42