Skip to content

Instantly share code, notes, and snippets.

@joeegan
Last active September 5, 2017 10:50
Show Gist options
  • Save joeegan/41da856a7a258f05605ca4a8ff002c53 to your computer and use it in GitHub Desktop.
Save joeegan/41da856a7a258f05605ca4a8ff002c53 to your computer and use it in GitHub Desktop.
compose over pipe
a(b(c(true))))
pipe(c, b, a)(true)
compose(a, b, c)(true)
// compose...
// haskell: a . b . c true
// elm & elixir: a <| b <| c true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment