Last active
March 31, 2020 09:08
-
-
Save meekg33k/758f37c29452043b12f593c574cf6084 to your computer and use it in GitHub Desktop.
The Non Null Assertion Operator https://medium.com/p/177b4a654ef6
This file contains hidden or 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
if (isPresentSomeObject(someObject)) { | |
//Back off compiler, I got this! | |
someObject!.id = 12; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment