Created
April 25, 2018 09:15
-
-
Save ukitaka/a1955a47f28cb33407e2c83a415e4b59 to your computer and use it in GitHub Desktop.
Set value to optional only once.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class MyClass { | |
var value: Int? { | |
willSet { | |
precondition(self.value == nil) } | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment