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

Returns a uncurried metafunction class. More...

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

Detailed Description

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

Returns a uncurried metafunction class.

n must be a positive (meaning != 0) integer representing the number of arguments taken by f in curried form. Specifically, uncurry<n, f>(x1, ..., xn) is equivalent to f(x1)...(xn).