Skip to content

Instantly share code, notes, and snippets.

@teepark
Created September 23, 2016 16:51
Show Gist options
  • Save teepark/5aaf6e8595a9b4cf1146c536aaeb208a to your computer and use it in GitHub Desktop.
Save teepark/5aaf6e8595a9b4cf1146c536aaeb208a to your computer and use it in GitHub Desktop.
(<<<) : (c -> d) -> (a -> b -> c) -> a -> b -> d
(<<<) f g =
(\a b ->
g a b |> f
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment