Is there any short way to pass zero-arity function to another function. For now I do it like this:
let f a b c = ...;;
a (fun () -> f a b c)
Is there any syntactic sugar for the second line?
|
Is there any short way to pass zero-arity function to another function. For now I do it like this:
Is there any syntactic sugar for the second line? |
||||
|
|
|
How about:
To "apply", use
The meaning is not exactly the same as |
|||
|
|
|
If If you want to you can define the function
And then use it like this:
But that's not really much shorter (or clearer) than using PS: The pedant in me needs to point out that |
|||||||||
|