You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Would be nice to tell newbies, that F# will make an Infix-operator out of (|>). I was thinking ~30min about the black magic that is going on with the given definition:
let (|>) x f =
f x
How can x (the list in the example) ever be on the left side of the function |>?
Would be nice to tell newbies, that F# will make an Infix-operator out of
(|>). I was thinking ~30min about the black magic that is going on with the given definition:How can
x(the list in the example) ever be on the left side of the function|>?