Avatar
let a: Int?? = nil let b: Int? = nil let c = a ?? b // Int?.none let d: Int?? = a ?? b // Int??.some(.none) (edited)
6:43 AM
まあ一応整合性は取れてはいるか