Skip to content

Instantly share code, notes, and snippets.

@PaulTaykalo
Created July 27, 2016 09:41
Show Gist options
  • Save PaulTaykalo/d0e49c47a7339ffe79765815c96541a4 to your computer and use it in GitHub Desktop.
Save PaulTaykalo/d0e49c47a7339ffe79765815c96541a4 to your computer and use it in GitHub Desktop.
Optionals check
// Check yourself if you know optionals good enough
let x: Int?? = nil
let y: Int?? = .Some(nil)
let a = x ?? 12 // a == ?
let b = y ?? 13 // b == ?
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment