Skip to content

Instantly share code, notes, and snippets.

@bestiosdeveloper
Created May 19, 2020 13:53
Show Gist options
  • Save bestiosdeveloper/83b49ff08d8355110b6a220fa93f54b1 to your computer and use it in GitHub Desktop.
Save bestiosdeveloper/83b49ff08d8355110b6a220fa93f54b1 to your computer and use it in GitHub Desktop.
var firstProperty:[Model]? = nil
var secondProperty:[Model]? = [Model()]
firstProperty ??= [] // firstProperty is set since its value is .None
secondProperty ??= [] // secondProperty's value isn't changed since its value is .Some
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment