Why can't I do something like

let sum = List.fold + 0 aListOfNumbers
link|improve this question

73% accept rate
feedback

1 Answer

up vote 14 down vote accepted

Because if you write it that way, F# thinks that you're trying to call + with List.fold as its left argument and 0 aListOfNumbers as its right argument.

To give an infix operator as an argument to a function you need to parenthesize it:

let sum = List.fold (+) 0 aListOfNumbers
link|improve this answer
More reasons to love scheme. – kunj2aan Mar 13 '11 at 17:15
feedback

Your Answer

 
or
required, but never shown

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