Skip to content

Instantly share code, notes, and snippets.

@vgaltes
Created May 4, 2015 14:25
Show Gist options
  • Save vgaltes/c9b2b5cd166c2babcf31 to your computer and use it in GitHub Desktop.
Save vgaltes/c9b2b5cd166c2babcf31 to your computer and use it in GitHub Desktop.
FSharp Bank kata - global operator
let (|>>) result f =
match result with
| Success(value) -> f value
| Failure(error) -> Failure(error)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment