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!)
|
3
|
|
|
|
|
|
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 f which takes arguments a and b. You call f with argument a 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. For example, in OCaml:
This function would add two integers. You would call it like this:
If you just call it with one argument:
the result is a function that adds 1 to its argument. This is also called partial application. Reference: Wikipedia on Currying |
||
|
|
|
A curried function is a function that returns a function as its result. |
||
|
|
|
|
@Jay ConRod - currying emphatically != partial function application. There is a subtle difference as I discussed in other comment! |
||
|
|
|
|
Currying is a transformation that can be applied to functions to allow them to take one less argument than previously. For example, in F# you can define a function thus:-
Here function f takes parameters x, y and z and sums them together so:-
Returns 6. From our definition we can can therefore define the curry function for f:-
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 takes a single argument and returns the specified function with the first argument set to the input argument. Using our previous example we can obtain a curry of f thus:-
We can then do the following:-
Which provides us with a function f1 which is equivilent to f1 y z = 1 + y + z. This means we can do the following:-
Which returns 6. This process is often confused with 'partial function application' which can be defined thus:-
Though we can extend it to more than one parameter, i.e.:-
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:-
Which will return a result of 6. In conclusion:- The difference between currying and partial function application is that:- 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. This allows us to represent functions with multiple parameters as a series of single argument functions. Example:-
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:-
|
||
|
|
|
|
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
This is a function that takes two arguments, a and b, and returns their sum. We will now curry this function:
This is a function that takes one argument, a, and returns a function that takes another argument, b, and that function returns their sum.
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. |
||
|
|
