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

Returns a metafunction class invoking f with its two first arguments in reverse order. More...

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

Detailed Description

template<typename f>
struct boost::mpl11::flip< f >

Returns a metafunction class invoking f with its two first arguments in reverse order.

Specifically, apply<flip<f>, a0, a1, a2, ..., aN> is equivalent to apply<f, a1, a0, a2, ..., aN>.