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