Anyone have a decent example, preferably practical/useful, they could post demonstrating the concept?
My examples will cover using it for the reuse and encapsulation of code. This is fairly obvious once you look at these and should give you a concrete, simple example that you can think of applying in numerous situations.
but this is the same as:
So this simple case isn't convincing. It really is though, and powerful once you use the language more and naturally come across these situations. The other example with some code reuse as currying. A recurrence relation to create prime numbers. Awful lot of similarity in there:
Ok, now rowland and cloitre are curried functions, since they have free variables, and we can get any index of it's sequence without knowing or worrying about f_recurrence. |
||||
|
|
While the previous examples answered the question, here are two simpler examples of how Currying can be beneficial for F# programming.
And don't forget you can curry the Printf family of function! In the curried version, notice the distinct lack of a lambda.
|
|||
|
|
It's a fairly simple process. Take a function, bind one of its arguments and return a new function. For example:
Now by currying the simple concatStrings function, you can easily add a DOS style command prompt to the front of any string! Really useful! Okay, not really. A more useful case I find is when I want to have a make a function that returns me data in a stream like manner.
The convenient part about it is that rather than creating an entire class for this sort of thing, calling the constructor, calling obj.readDWORD(), you just have a function that can't be mutated out from under you. |
|||
|
|
You know you can map a function over a list? For example, mapping a function to add one to each element of a list:
This is actually already using currying because the
Without currying you could not partially apply these functions and would have to write something like this instead:
|
|||||
|
|
I gave a good example of simulating currying in C# on my blog. The gist is that you can create a function that is closed over a parameter (in my example create a function for calculating the sales tax closed over the value of a given municipality)out of an existing multi-parameter function. What is appealing here is instead of having to make a separate function specifically for calculating sales tax in Cook County, you can create (and reuse) the function dynamically at runtime. |
|||||
|
|
Currying describes the process of transforming a function with multiple arguments into a chain of single-argument functions. Example in C#, for a three-argument function:
Now, the boolean argument is probably not the argument you'd most likely want to leave open with a partial application. This is one reason why the order of arguments in F# functions can seem a little odd at first. Let's define a different C# curry function:
Now, we can do something a little more useful:
Why are these examples in C#? Because in F#, function declarations are curried by default. You don't usually need to curry functions; they're already curried. The major exception to this is framework methods and other overloaded functions, which take a tuple containing their multiple arguments. You therefore might want to curry such functions, and, in fact, I came upon this question when I was looking for a library function that would do this. I suppose it is missing (if indeed it is) because it's pretty trivial to implement:
To get around the failure with String.Compare, since as far as I can tell there's no way to specify which 3-argument overload to pick, you can use a non-general solution:
I won't go into detail about the uses of partial function application in F# because the other answers have covered that already. |
|||
|
|