Pass functions in F# - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T11:22:18Z http://stackoverflow.com/feeds/question/44066 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/44066/pass-functions-in-f 3 Pass functions in F# pschorf 2008-09-04T15:59:36Z 2008-09-13T19:48:31Z <p>Is it possible to pass a reference to a function to another function in F#? Specifically, I'd like to pass lambda functions like</p> <p>foo(fun x -> x ** 3)</p> <p>More specifically, I need to know how I would refer to the passed function in a function that I wrote myself.</p> http://stackoverflow.com/questions/44066/pass-functions-in-f/44079#44079 3 Answer by Mark Cidade for Pass functions in F# Mark Cidade 2008-09-04T16:05:28Z 2008-09-04T16:05:28Z <p>Yes, it is possible. The <a href="http://research.microsoft.com/fsharp/manual/spec2.aspx#_Toc207785549" rel="nofollow">manual</a> has this example:</p> <pre><code>&gt; List.map (fun x -&gt; x % 2 = 0) [1 .. 5];; val it : bool list = [false; true; false; true; false] </code></pre> http://stackoverflow.com/questions/44066/pass-functions-in-f/44082#44082 2 Answer by nickd for Pass functions in F# nickd 2008-09-04T16:06:09Z 2008-09-04T16:52:19Z <p>Functions are first class citizens in F#. You can therefore pass them around just like you want to.</p> <p>If you have a function like this:</p> <pre><code>let myFunction f = f 1 2 3 </code></pre> <p>and <strong>f</strong> is function then the return value of <strong>myFunction</strong> is <strong>f</strong> applied to 1,2 and 3.</p> http://stackoverflow.com/questions/44066/pass-functions-in-f/60508#60508 1 Answer by Michiel Borkent for Pass functions in F# Michiel Borkent 2008-09-13T12:55:41Z 2008-09-13T19:48:31Z <p>Passing a lambda function to another function works like this:</p> <p>Suppose we have a trivial function of our own as follows:</p> <pre><code>let functionThatTakesaFunctionAndAList f l = List.map f l </code></pre> <p>Now you can pass a lambda function and a list to it:</p> <pre><code>functionThatTakesaFunctionAndAList (fun x -&gt; x ** 3.0) [1.0;2.0;3.0] </code></pre> <p>Inside our own function <code>functionThatTakesaFunctionAndAList</code> you can just refer to the lambda function as <code>f</code> because you called your first parameter <code>f</code>.</p> <p>The result of the function call is of course:</p> <pre><code>float list = [1.0; 8.0; 27.0] </code></pre>