What is 'Currying'? - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T07:41:10Zhttp://stackoverflow.com/feeds/question/36314http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/36314/what-is-currying17What is 'Currying'?Ben2008-08-30T20:12:55Z2008-10-19T05:35:02Z
<p>I've seen references to curried functions in several articles and blogs but I can't find a good explanation (or at least one that makes sense!)</p>
http://stackoverflow.com/questions/36314/what-is-currying/36320#3632013Answer by Jay Conrod for What is 'Currying'?Jay Conrod2008-08-30T20:18:58Z2008-08-30T20:18:58Z<p>Currying is a technique to pass multiple arguments to a function when the language only allows one argument and one return value. Suppose you have a function <em>f</em> which takes arguments <em>a</em> and <em>b</em>. You call <em>f</em> with argument <em>a</em> and instead of doing anything, it returns a function which takes a second argument. You pass the second argument to that function, and then you get your result.</p>
<p>For example, in OCaml:</p>
<pre><code>let add a b = a + b
</code></pre>
<p>This function would add two integers. You would call it like this:</p>
<pre><code>add 1 2
</code></pre>
<p>If you just call it with one argument:</p>
<pre><code>add 1
</code></pre>
<p>the result is a function that adds 1 to its argument. This is also called partial application.</p>
<p>Reference: <a href="http://en.wikipedia.org/wiki/Currying" rel="nofollow">Wikipedia on Currying</a></p>
http://stackoverflow.com/questions/36314/what-is-currying/36321#3632112Answer by Kyle Cronin for What is 'Currying'?Kyle Cronin2008-08-30T20:19:51Z2008-08-30T20:19:51Z<p>Currying is when you break down a function that takes multiple arguments into a series of functions that take part of the arguments. Here's an example in Scheme</p>
<pre><code>(define (add a b)
(+ a b))
(add 3 4) returns 7
</code></pre>
<p>This is a function that takes two arguments, a and b, and returns their sum. We will now curry this function:</p>
<pre><code>(define (add a)
(lambda (b)
(+ a b)))
</code></pre>
<p>This is a function that takes one argument, a, and returns a function that takes another argument, b, and that function returns their sum.</p>
<pre><code>((add 3) 4)
(define add3 (add 3))
(add3 4)
</code></pre>
<p>The first statement returns 7, like the (add 3 4) statement. The second statement defines a new function called add3 that will add 3 to its argument. This is what some people may call a closure. The third statement uses the add3 operation to add 3 to 4, again producing 7 as a result.</p>
http://stackoverflow.com/questions/36314/what-is-currying/36340#363408Answer by kronoz for What is 'Currying'?kronoz2008-08-30T21:06:05Z2008-08-30T21:06:05Z<p>Currying is a transformation that can be applied to functions to allow them to take one less argument than previously.</p>
<p>For example, in F# you can define a function thus:-</p>
<pre><code>let f x y z = x + y + z
</code></pre>
<p>Here function f takes parameters x, y and z and sums them together so:-</p>
<pre><code>f 1 2 3
</code></pre>
<p>Returns 6.</p>
<p>From our definition we can can therefore define the curry function for f:-</p>
<pre><code>let curry f = fun x -> f x
</code></pre>
<p>Where 'fun x -> f x' is a lambda function equivilent to x => f(x) in C#. This function inputs the function you wish to curry and returns a function which <em>takes a single argument</em> and returns the specified function with the first argument set to the input argument.</p>
<p>Using our previous example we can obtain a curry of f thus:-</p>
<pre><code>let curryf = curry f
</code></pre>
<p>We can then do the following:-</p>
<pre><code>let f1 = curryf 1
</code></pre>
<p>Which provides us with a function f1 which is equivilent to f1 y z = 1 + y + z. This means we can do the following:-</p>
<pre><code>f1 2 3
</code></pre>
<p>Which returns 6.</p>
<p>This process is often confused with 'partial function application' which can be defined thus:-</p>
<pre><code>let papply f x = f x
</code></pre>
<p>Though we can extend it to more than one parameter, i.e.:-</p>
<pre><code>let papply2 f x y = f x y
let papply3 f x y z = f x y z
etc.
</code></pre>
<p>A partial application will take the function and parameter(s) and return a function that requires one or more less parameters, and as the previous two examples show is implemented directly in the standard F# function definition so we could achieve the previous result thus:-</p>
<pre><code>let f1 = f 1
f1 2 3
</code></pre>
<p>Which will return a result of 6.</p>
<p>In conclusion:-</p>
<p>The difference between currying and partial function application is that:-</p>
<p>Currying takes a function and provides a new function accepting a single argument, and returning the specified function with its first argument set to that argument. <em>This allows us to represent functions with multiple parameters as a series of single argument functions</em>. Example:-</p>
<pre><code>let f x y z = x + y + z
let curryf = curry f
let f1 = curryf 1
let f2 = curryf 2
f1 2 3
6
f2 1 3
6
</code></pre>
<p>Partial function application is more direct - it takes a function and one or more arguments and returns a function with the first n arguments set to the n arguments specified. Example:-</p>
<pre><code>let f x y z = x + y + z
let f1 = f 1
let f2 = f 2
f1 2 3
6
f2 1 3
6
</code></pre>
http://stackoverflow.com/questions/36314/what-is-currying/36343#363430Answer by kronoz for What is 'Currying'?kronoz2008-08-30T21:07:41Z2008-08-30T21:07:41Z<p>@<a href="#36320" rel="nofollow">Jay ConRod</a> - currying emphatically != partial function application. There is a subtle difference as I discussed in other comment!</p>
http://stackoverflow.com/questions/36314/what-is-currying/216055#2160550Answer by Jon Harrop for What is 'Currying'?Jon Harrop2008-10-19T05:35:02Z2008-10-19T05:35:02Z<p>A curried function is a function that returns a function as its result.</p>