Skip to content

Instantly share code, notes, and snippets.

@imownbey
Created September 11, 2015 15:33
Show Gist options
  • Save imownbey/e389a266c46622dd72ca to your computer and use it in GitHub Desktop.
Save imownbey/e389a266c46622dd72ca to your computer and use it in GitHub Desktop.
extension Optional {
func unwrappedOr(value: Wrapped) -> Wrapped {
switch self {
case .Some:
return self!
case .None:
return value
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment