Suppose a function bind has a labelled argument, optional arguments and unlabelled arguments, and you want to define a method m that applies the unlabelled arguments of bind and returns the partially applied function, so that the user of m can apply the labelled or optional arguments of bind. How do you do this? Simply writing method m = bind a b [...] z causes the compiler to think that the optional arguments are omitted.
|
|
|||
|
|
|
The position of the optional arguments (in the function declaration or function type) is important: they are only applied implicitly when the next non-optional argument is applied. If you want the partial application of one parameter Contrast
with:
If you don't want to change the definition order, or want to partially apply all non-optional parameters, you need to explicitly capture the optional parameters that would be implicitly passed:
In case you weren't familiar with it, the I have added a last |
|||||||
|