Returns a uncurried metafunction class. More...
#include <boost/mpl11/fwd/functional.hpp>
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)
.