Returns a metafunction class invoking f
with its two first arguments in reverse order.
More...
#include <boost/mpl11/fwd/functional.hpp>
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>
.