vote up 3 vote down star
1

Writing as an unreconstructed imperative & OO programmer...

Have messed about with Erlang and also Haskell lately. I like Erlang, not sure yet about Haskell. Functional seems more like math than programming, hope that makes sense. Functional programming seems very powerful.

Reading docs on the interwibble wrt functional programming I come across the word 'currying' constantly. I seem to be finding only docs that are somewhat over my head - much terminology that is not defined.

What is currying?

I have looked for similar already posted questions but did not find anything, so feel free to point me to established thread.

TIA.

flag

50% accept rate

5 Answers

vote up 6 vote down

Currying is a way to transform functions that take multiple parameters to functions that return functions that take arguments successively. That is, to transform:

f(x, y, z)          //  (int,int,int) -> int

to

g(x)(y)(z)          //  int -> (int -> (int -> int))

in which g(x) returns another function, h(y) that takes an argument and returns j(z).

It is originated from mathematical ideas. In lambda calculus functions take a single parameter and this approach effectively enables creation of functions that take tuples.

In programming, you can use this approach to partially apply a function to some value while leaving other values undecided, and probably pass the partially applied function to another procedure to apply to actual arguments to produce return values.

link|flag
vote up 7 vote down

In an algebra of functions, dealing with functions that take multiple arguments (or equivalent one argument that's an N-tuple) is somewhat inelegant -- but, as Moses Schönfinkel (and, independently, Haskell Curry) proved, it's not needed: all you need are functions that take one argument.

So how do you deal with something you'd naturally express as, say, f(x,y)? Well, you take that as equivalent to f(x)(y) -- f(x), call it g, is a function, and you apply that function to y. In other words, you only have functions that take one argument -- but some of those functions return other functions (which ALSO take one argument;-).

As usual, wikipedia has a nice summary entry about this, with many useful pointers (probably including ones regarding your favorite languages;-) as well as slightly more rigorous mathematical treatment.

link|flag
I suppose similar comment to mine above - I have not seen that functional languages restrict functions to taking a single arg. Am I mistaken? – Eric M Aug 30 at 21:50
@hoohoo: Functional languages don't generally restrict functions to a single argument. However, on a lower, more mathematical level it's a lot easier to deal with functions that only take one argument. (In lambda calculus, for example, functions only take one argument at a time.) – Sam DeFabbia-Kane Aug 30 at 23:00
OK. Another questions then. Is the following a true statement? Lambda calculus can be used as a model of functional programming but functional programming is not necessarily applied lambda calculus. – Eric M Aug 31 at 14:59
As wikipedia pages note, most FP languages "embellish" or "augment" lambda calculus (e.g. with some constants and datatypes) rather than just "applying" it, but it's not that close. BTW, what gives you the impression that e.g. Haskell DOESN'T "restrict functions to taking a single arg"? It sure does, though that's irrelevant thanks to currying; e.g. div :: Integral a => a -> a -> a -- note those multiple arrows? "Map a to function mapping a to a" is one reading;-). You could use a (single) tuple argument for div &c, but that would be really anti-idiomatic in Haskell. – Alex Martelli Aug 31 at 15:20
@Alex - wrt Haskell & arg count, I have not spent a lot of time on Haskell, and that was all a few weeks ago. So it was an easy error to make. – Eric M Aug 31 at 17:03
vote up -1 vote down

I found this article, and the article it references, useful, to better understand currying: http://blogs.msdn.com/wesdyer/archive/2007/01/29/currying-and-partial-function-application.aspx

As the others mentioned, it is just a way to have a one parameter function.

This is useful in that you don't have to assume how many parameters will be passed in, so you don't need a 2 parameter, 3 parameter and 4 parameter functions.

link|flag
vote up 0 vote down

Here's a concrete example:

Suppose you have a function that calculates the gravitational force acting on an object. If you don't know the formula, you can find it here. This function takes in the three necessary parameters as arguments.

Now, being on the earth, you only want to calculate forces for objects on this planet. In a functional language, you could pass in the mass of the earth to the function and then partially evaluate it. What you'd get back is another function that takes only two arguments and calculates the gravitational force of objects on earth. This is called currying.

link|flag
As a curiosity, the Prototype library for JavaScript offers a "curry" function that does pretty much exactly what you've explained here: prototypejs.org/api/function/curry – brownstone Aug 30 at 2:26
That's pretty cool. I did this example in Scheme a long time ago... – Shea Daniels Aug 30 at 2:39
vote up 1 vote down

Here's a toy example in Python:

>>> from functools import partial as curry

>>> # Original function taking three parameters:
>>> def display_quote(who, subject, quote):
        print who, 'said regarding', subject + ':'
        print '"' + quote + '"'


>>> display_quote("hoohoo", "functional languages",
           "I like Erlang, not sure yet about Haskell.")
hoohoo said regarding functional languages:
"I like Erlang, not sure yet about Haskell."

>>> # Let's curry the function to get another that always quotes Alex...
>>> am_quote = curry(display_quote, "Alex Martelli")

>>> am_quote("currying", "As usual, wikipedia has a nice summary...")
Alex Martelli said regarding currying:
"As usual, wikipedia has a nice summary..."

(Just using concatenation via + to avoid distraction for non-Python programmers.)

Editing to add:

See http://docs.python.org/library/functools.html?highlight=partial#functools.partial, which also shows the partial object vs. function distinction in the way Python implements this.

link|flag
I do not get this - you do this: >>> am_quote = curry(display_quote, "Alex Martelli") but then you do this next: >>> am_quote("currying", "As usual, wikipedia has a nice summary...") So you have a function with two args. It would seem that currying should give you three different funcs that you would compose? – Eric M Aug 30 at 21:46
I am using partial to curry only one parameter, producing a function with two args. If you wanted, you could further curry am_quote to create one that only quoted Alex on a particular subject. The math backgound may be focused on ending up with functions with only one parameter - but I believe fixing any number of parameters like this is commonly (if imprecisely from a math standpoint) called currying. – Anon Aug 31 at 1:43
(btw - the '>>>' is the prompt in the Python interactive interpreter, not part of the code.) – Anon Aug 31 at 2:20
OK thanks for the clarification about args. I know about the Python interpreter prompt, I was trying to quote the lines but it diidn't work ;-) – Eric M Aug 31 at 3:49
After your comment, I searched and found other references, including here on SO, to the difference between "currying" and. "partial application" in response to lots of instances of the imprecise usage I'm familiar with. See for instance: stackoverflow.com/questions/218025/… – Anon Aug 31 at 4:47
show 3 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.