swift#discord#verified

(discord/swift/2018/03/02/0) SwiftのOptionalが絡んだoverrideの仕様が乱れてる件について

概要 discord ios dev #swift 2018/03/02-03 SwiftのOptionalが絡んだoverrideの仕様が乱れてる件について log tarunon - 2018/03/02 class My { func get() -> Int?? { return 1 } } class MyMy: My { override func get() -> Int? { return 2 } } MyMy().g…

(discord/swift/2018/03/06/0) SwiftのUnsafeMutablePointerからUnsafePointer型の変換について

概要 discord ios dev #swift 2018/03/06-07 Swiftのポインタの変換に関する話題 log koher - 3/6 23:58 ↓の UnsafeMutablePointer を UnsafePointer 型の引数に渡せるのってなんでなんでしたっけ? var a = 42 let p = UnsafeMutablePointer(&a) func foo(_…