vote up 3 vote down star

Why can't I use optional parameters in loose functions defined with "let"?

Why are they only allowed in member functions?

flag

59% accept rate

2 Answers

vote up 6 vote down check

I suspect they are provided only for compatibility with .NET functions. They aren't something you encounter in functional languages. The problem with an optional parameter is you can't curry it. If a function f's second parameter is optional, what is

let g = f x
?

Is it a function taking one argument, or a value obtained by evaluating f on x plus the default second parameter?

link|flag
vote up 0 vote down

See also

http://cs.hubfs.net/forums/thread/10756.aspx

link|flag

Your Answer

Get an OpenID
or

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