Which of theese two alternatives do you find yourself using most often, and which is more "idiomatic"?
- f arg (obj.DoStuff())
- f arg <| obj.DoStuff()
|
|
Which of theese two alternatives do you find yourself using most often, and which is more "idiomatic"?
|
|||
|
|
|
|
Overall, I don't know that one or the other is more idiomatic. Personally, the only time I use <| is with "raise":
Apart from that, I always use parens. Note that since most F# code uses curried functions, this does not typically imply any "extra" parens:
It's when you get into non-curried functions and constructors and whatnot that it starts getting less pretty:
We will probably at least consider changing the F# languages rules so that high-precedence applications bind even more tightly; right now
parses like
but a lot of people would like it to parse as
(the motivating case in the original question). If you have a strong opinion about this, leave a comment on this response. |
||
|
|
|
I use () much much more often, but thats just preference, I'm pretty sure that <| is more idomatic, but I use () by habit. |
||||||||
|
|
|
Whenever possible, I much prefer |> because it reads from left to right. |
||
|
|
|
|
Because type inference works from left to right, a bonus of using As a contrived example,
works just fine, but
complains of "lookup on object of indeterminate type". |
||
|
|