Are the double forward/backward pipe operators documented?
Posted
by Daniel
on Stack Overflow
See other posts from Stack Overflow
or by Daniel
Published on 2010-05-19T16:49:07Z
Indexed on
2010/05/19
16:50 UTC
Read the original article
Hit count: 122
F#
I remember reading about the double pipe operators -- ||> and <|| -- somewhere and now I can't remember where. I can't find them on MSDN or in the language spec. Are they documented anywhere?
Example
let print a b = sprintf "%O %O" a b
(1, 2) ||> print
// val it : string = "1 2"
© Stack Overflow or respective owner