Skip to content

Instantly share code, notes, and snippets.

@jkubicek
Last active August 29, 2015 14:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jkubicek/fe2dbc7ad583ffacf2b6 to your computer and use it in GitHub Desktop.
Save jkubicek/fe2dbc7ad583ffacf2b6 to your computer and use it in GitHub Desktop.
Swift nil-check compound assignment operator.
infix operator ??= {}
func ??=<T>(inout optional: T?, value: T) {
if optional == nil {
optional = value
}
}
var id: Int? = nil
id ??= 1234
println(id!)
// 1234
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment