Functions are first class citizens in F#. You can therefore pass them around just like you want to.
If you have a function like this:
let myFunction f =
f 1 2 3
and f is function then the return value of myFunction is f applied to 1,2 and 3.
|
2 | added 239 characters in body | ||
|
Functions are first class citizens in F#. You can therefore pass them around just like you want to. If you have a function like this:
and f is function then the return value of myFunction is f applied to 1,2 and 3. |
||||
|
1 |
|
||
|
Functions are first class citizens in F#. You can therefore pass them around just like you want to. |
||||