What is the difference between currying and partial application. - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T05:22:33Zhttp://stackoverflow.com/feeds/question/218025http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/218025/what-is-the-difference-between-currying-and-partial-application11What is the difference between currying and partial application.SpoonMeiser2008-10-20T10:41:12Z2009-01-09T12:03:57Z
<p>I'm not exactly sure how to word this question.</p>
<p>I learnt what currying was in the first year of university, and have been using it where applicable ever since.</p>
<p>However, I quite often see on the Internet various complaints that other peoples examples of currying are not currying, but are actually just partial application.</p>
<p>I've not found a decent explanation of what partial application is, or how it differs from currying. There seems to be a general confusion, with equivalent examples being described as currying in some places, and partial application in others.</p>
<p>Could someone provide me with a definition of both terms, and details of how they differ?</p>
http://stackoverflow.com/questions/218025/what-is-the-difference-between-currying-and-partial-application/218054#2180543Answer by Jon Skeet for What is the difference between currying and partial application.Jon Skeet2008-10-20T11:02:06Z2008-10-20T11:02:06Z<p>Interesting question. After a bit of searching, <a href="http://www.uncarved.com/blog/not_currying.mrk" rel="nofollow">"Partial Function Application is not currying"</a> gave the best explanation I found. I can't say that the <em>practical</em> difference is particularly obvious to me, but then I'm not an FP expert...</p>
<p>Another useful-looking page (which I confess I haven't fully read yet) is <a href="http://markmahieu.blogspot.com/2007/12/currying-and-partial-application-with.html" rel="nofollow">"Currying and Partial Application with Java Closures"</a>.</p>
<p>It does look like this is widely-confused pair of terms, mind you.</p>
http://stackoverflow.com/questions/218025/what-is-the-difference-between-currying-and-partial-application/218055#2180559Answer by Mark Cidade for What is the difference between currying and partial application.Mark Cidade2008-10-20T11:02:57Z2008-10-20T11:25:10Z<p>Currying is converting a single function of <em>n</em> arguments into <em>n</em> functions with a single argument each. Given the following function:</p>
<pre><code>function f(x,y,z) { z(x(y));}
</code></pre>
<p>When curried, becomes:</p>
<pre><code>function f(x) { lambda(y) { lambda(z) { z(x(y)); } } }
</code></pre>
<p>In order to get the full application of f(x,y,z), you need to do this:</p>
<pre><code>f(x)(y)(z);
</code></pre>
<p>Many functional languages let you write <code>f x y z</code>. If you only call <code>f x y</code> or <em>f(x)(y)</em> then you get a partially-applied function—the return value is a closure of <code>lambda(z){z(x(y))}</code> with passed-in the values of x and y to <code>f(x,y)</code>. </p>
<p>One way to use partial application is to define functions as partial applications of generalized functions, like <strong>fold</strong>:</p>
<pre><code>function fold(combineFunction, accumalator, list) {/* ... */}
function sum = curry(fold)(lambda(accum,e){e+accum}))(0);
function length = curry(fold)(lambda(accum,_){1+accum})(empty-list);
function reverse = curry(fold)(lambda(accum,e){concat(e,accum)})(empty-list);
/* ... */
@list = [1, 2, 3, 4]
sum(list) //returns 10
@f = fold(lambda(accum,e){e+accum}) //f = lambda(accumaltor,list) {/*...*/}
f(0,list) //returns 10
@g = f(0) //same as sum
g(list) //returns 10
</code></pre>