Skip to content

Instantly share code, notes, and snippets.

@hachinobu
Last active August 29, 2015 14:27
Show Gist options
  • Save hachinobu/68a7556a4e130bf0e3f5 to your computer and use it in GitHub Desktop.
Save hachinobu/68a7556a4e130bf0e3f5 to your computer and use it in GitHub Desktop.
Swift flatmap
func flatMap<A, B>(x: A?, f: A -> B?) -> B? {
if let x = x {
return f(x)
} else {
return nil
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment