Post not yet marked as solved
Post marked as unsolved with 2 replies, 105 views
Hello, I'm wondering what is difference between below two expresssions:
Int?(nil) -> compiled, nil
Int?.init(nil) -> not compiled
Int??(nil) -> compiled, nil
Int??.init(nil) -> compiled, Optional(nil)
I checked the documentation about Optional, and seems I use same initializer for all expressions. but there are differences. anyone knows why?