Skip to content

Instantly share code, notes, and snippets.

@mattpodwysocki
Created March 20, 2009 17:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mattpodwysocki/82459 to your computer and use it in GitHub Desktop.
Save mattpodwysocki/82459 to your computer and use it in GitHub Desktop.
-- Haskell
(.) :: (b -> c) -> (a -> b) -> a -> c
// F#
val (<<) : ('a -> 'b) -> ('c -> 'a) -> 'c -> 'b
val (>>) : ('a -> 'b) -> ('b -> 'c) -> 'a -> 'c
val (|>) : 'a -> ('a -> 'b) -> 'b
val (<|) : ('a -> 'b) -> 'a -> 'b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment