show/hide this revision's text 4 adjusted code formatting

Passing a lambda function to another function works like this.:

Suppose we have a trivial function of our own as follows:

let functionThatTakesaFunctionAndAList f l = List.map f l

Now you can pass a lambda function and a list to it:

functionThatTakesaFunctionAndAList (fun x -> > x ** 3.0) [1.0;2.0;3.0]

Inside our own function functionThatTakesaFunctionAndAList you can just refer to the lambda function as f because you called your first parameter f.

The result of the function call is of course:

float list = [1.0; 8.0; 27.0]
show/hide this revision's text 3 minor correction

Passing a lambda function to another function works like this.

Suppose we have a trivial function of our own as follows:

let functionThatTakesaFunctionAndAList f l = List.map f l

Now you can pass a lambda function and a list to it:

functionThatTakesaFunctionAndAList (fun x -> x ** 3.0) [1.0;2.0;3.0]

Inside our own function functionThatTakesaFunctionAndAList you can just refer to the lambda function as f because you called your first parameter f.

show/hide this revision's text 2 Reread the question and changed answer accordingly.

Passing a lambda function just to another function works like passing any other value in F#this.

Suppose we have a trivial function of our own as follows:

let foo x functionThatTakesaFunctionAndAList f l = List.map f l

Now you can pass a lambda function and a list to it:

functionThatTakesaFunctionAndAList (fun x -> x ** 3.0//val foo : float -> float

Now ) [1.0;2.0;3.0]

Inside our own function functionThatTakesaFunctionAndAList you can pass the named value (function) foo around, just like any other named valuerefer to the lambda function because you called your first parameter f.

List.map foo [1.0;2.0;3.0] //float list = [1.0; 8.0; 27.0]

show/hide this revision's text 1