Skip to content

Instantly share code, notes, and snippets.

@efremidze
Last active March 12, 2017 01:09
Show Gist options
  • Save efremidze/1f67ae9955d6040cf29c4943433bf1a1 to your computer and use it in GitHub Desktop.
Save efremidze/1f67ae9955d6040cf29c4943433bf1a1 to your computer and use it in GitHub Desktop.
unwrap shortcut
extension Optional {
func unwrap(_ f: (Wrapped) -> Void) {
_ = self.map(f)
}
}
// usage:
// let username: String?
// username.unwrap { user.username = $0 } // update user if username exists
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment