vote up 2 vote down star

Which of theese two alternatives do you find yourself using most often, and which is more "idiomatic"?

  1. f arg (obj.DoStuff())
  2. f arg <| obj.DoStuff()
flag

50% accept rate

4 Answers

vote up 4 vote down check

Overall, I don't know that one or the other is more idiomatic.

Personally, the only time I use <| is with "raise":

raise <| new FooException("blah")

Apart from that, I always use parens. Note that since most F# code uses curried functions, this does not typically imply any "extra" parens:

f arg (g x y)

It's when you get into non-curried functions and constructors and whatnot that it starts getting less pretty:

f arg (g(x,y))

We will probably at least consider changing the F# languages rules so that high-precedence applications bind even more tightly; right now

f g()

parses like

f g ()

but a lot of people would like it to parse as

f (g())

(the motivating case in the original question). If you have a strong opinion about this, leave a comment on this response.

link|flag
After reading this and the following threads on FSHub cs.hubfs.net/forums/thread/3665.aspx cs.hubfs.net/forums/thread/5421.aspx I'm signing the "make f g() parse like f (g())" petition as soon as I can find a pen! "Fixing" this would make utilizing the framework so much prettier. – Torbjörn Gyllebring Sep 30 '08 at 13:04
vote up 0 vote down

I use () much much more often, but thats just preference, I'm pretty sure that <| is more idomatic, but I use () by habit.

link|flag
Rayne, I started to grok F# recently. Do you use it for commercial development or just for fun? I'm very interested in real-world F# apps – aku Sep 30 '08 at 11:31
Just for fun right now, but it's very well suited for real world apps, this language is beautiful. It can be used pretty much to the same extent C# can only more consise elegant, and readable code! – Rayne Sep 30 '08 at 11:45
Rayne, agree. I really like it. I hope they will get us RTM version soon. – aku Sep 30 '08 at 12:06
I use it to automate performance tests and write utilities and scripts at work. Hopefully it will gain traction. – Torbjörn Gyllebring Sep 30 '08 at 12:52
vote up 0 vote down

Whenever possible, I much prefer |> because it reads from left to right.

link|flag
vote up 0 vote down

Because type inference works from left to right, a bonus of using |> is that it allows F# to infer the type of the argument of the function.

As a contrived example,

[1; 2; 3] |> (fun x -> x.Length*2)

works just fine, but

(fun x -> x.Length*2) [1; 2; 3]

complains of "lookup on object of indeterminate type".

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.