Haskell composition (.) vs F#'s pipe forward operator (|>)
Posted
by Ben Lings
on Stack Overflow
See other posts from Stack Overflow
or by Ben Lings
Published on 2009-09-21T22:04:33Z
Indexed on
2010/06/03
19:34 UTC
Read the original article
Hit count: 514
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
© Stack Overflow or respective owner