What is currying?
How currying can be done in c++?
Please Explain binders in STL container?
|
3
|
What is currying? How currying can be done in c++? Please Explain binders in STL container?
|
|||
|
|
|
|
In short, currying takes a function
This new function may be called in situations where only one argument is supplied, and passes the call on to the original The binders in the STL allow you do to this for C++ functions. For example:
|
||||||||||
|
|
|
Simplifying Gregg's example, using tr1:
Tr1 functional components allow you to write rich functional-style code in C++. As well, C++0x will allow for in-line lambda functions to do this as well:
And while C++ doesn't provide the rich side-effect analysis that some functional-oriented programming languages perform, const analysis and C++0x lambda syntax can help:
Hope that helps. |
|||
|
|
|
|
Have a look at Boost.Bind which makes the process shown by Greg more versatile:
This binds |
||||||||
|
|
|
Currying is a way of reducing a function that takes multiple arguments into a sequence of nested functions with one argument each:
Currying is nice because you can define functions that are simply wrappers around other functions with pre-defined values, and then pass around the simplified functions. C++ STL binders provide an implementation of this in C++. |
||||||
|