Invokes f with the result of mapping g on each argument.
More...
#include <boost/mpl11/fwd/functional.hpp>
Invokes f with the result of mapping g on each argument.
Specifically, apply<argmap<f, g>, x...> is equivalent to apply<f, apply<g, x>...>.
argmap is associative, i.e. argmap<f, argmap<g, h>> is equivalent to argmap<argmap<f, g>, h>.Haskell pseudo-code:
1.8.7