Invokes f with the result of invoking fs... on each corresponding argument.
More...
#include <boost/mpl11/fwd/functional.hpp>
Invokes f with the result of invoking fs... on each corresponding argument.
Specifically, apply<on<f, fs...>, x...> is equivalent to apply<f, apply<fs, x>...>. The fs... are applied to the arguments in lockstep. Hence, the arity of on is determined by the number of fs....
Haskell pseudo-code:
1.8.7