Skip to content

Instantly share code, notes, and snippets.

@macbaszii
Created August 24, 2015 10:17
Show Gist options
  • Select an option

  • Save macbaszii/2bb20489b670dfef74f4 to your computer and use it in GitHub Desktop.

Select an option

Save macbaszii/2bb20489b670dfef74f4 to your computer and use it in GitHub Desktop.
infix operator >>- { associativity left }
func >>-<T, U>(a: T?, f: T -> U?) -> U? {
return a.flatMap(f)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment