Haskell composition (.) vs F#'s pipe forward operator (|>)
- by Ben Lings
In F#, use of the the pipe-forward operator (|>) is pretty common. However, in Haskell I've only ever seen function composition (.) being used. I understand that they are related, but is there a language reason that pipe-forward isn't used in Haskell or is it something else