Skip to content

Instantly share code, notes, and snippets.

@advantis
Created June 30, 2014 13:31
Show Gist options
  • Save advantis/27e6e88f98f2728fa5a9 to your computer and use it in GitHub Desktop.
Save advantis/27e6e88f98f2728fa5a9 to your computer and use it in GitHub Desktop.
Swift null coalescing operator
operator infix || {}
@infix func ||<T>(lhs: T?, rhs: T) -> T {
return lhs ? lhs! : rhs
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment