Skip to content

Instantly share code, notes, and snippets.

@riteshhgupta
Created February 6, 2017 18:33
Show Gist options
  • Save riteshhgupta/358db2ed3b6968ef18880cb28bdb6963 to your computer and use it in GitHub Desktop.
Save riteshhgupta/358db2ed3b6968ef18880cb28bdb6963 to your computer and use it in GitHub Desktop.
extension Optional {
// `then` function executes the closure if there is some value
func then(_ handler: (Wrapped) -> Void) {
switch self {
case .some(let wrapped): return handler(wrapped)
case .none: break
}
}
}
@MKGitHub
Copy link

MKGitHub commented Apr 9, 2017

+1 for above

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment