I've always thought that F# had two different ways to pass arguments, curry style and tuple style. Is this actually correct?
Isn't it simply one style , curry style, and arguments can either be simple values or tuples.
e.g.
someFunc (a,b) =
isn't this a function with one curry style argument which happens to be a tuple ? Thus allowing me to pass tuples to this function using the pipleline operator? (where the elements of the tuple is named)
(1,2) |> someFunc
Is this correct?