Invokes f
with the result of invoking each fs...
with the arguments.
More...
#include <boost/mpl11/fwd/functional.hpp>
Invokes f
with the result of invoking each fs...
with the arguments.
Specifically, apply<bind<f, fs...>, x...>
is equivalent to apply<f, apply<fs, x...>...>
. The arity of f
must match the number of fs...
.
bind
has the property of being associative, i.e. bind<f, bind<g, h>>
is equivalent to bind<bind<f, g>, h>
.Haskell pseudo-code: