Anyone have a decent example, preferably practical/useful, they could post demonstrating the concept?
|
1
|
|
|
|
|
|
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. |
|||
|
|
|
|
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. |
||
|
|
|
|
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.
|
||
|
|
