MPL11
 All Classes Namespaces Files Typedefs Macros Groups Pages
List of all members
boost::mpl11::curry< n, f > Struct Template Reference

Returns a curried metafunction class. More...

#include <boost/mpl11/fwd/functional.hpp>

Detailed Description

template<detail::std_size_t n, typename f>
struct boost::mpl11::curry< n, f >

Returns a curried metafunction class.

n must be a positive (meaning != 0) integer representing the number of curried arguments of the created metafunction class. Specifically, curry<n, f>(x1)...(xn) is equivalent to f(x1, ..., xn).