I have a list of N elements in SML.
I want to apply a function to every element in that list, so I use map.
However the function I want to apply has more than 1 argument like this:
foo a b (c, d)
Where a is the element I am using from the list and b c and d are predefined variables that are the same every time.
I declare my function like this:
fun foo2 = map foo aList b (c,d)
but I get an operator and operand error, which was expected but I can think of any other way to do this.
foo2function seems to be missing arguments? – npostavs Oct 3 '12 at 20:07