Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for a snapshot of the master branch, built from commit 31ab4921bd.
PrevUpHomeNext

deferred_t::operator()

Creates a new deferred from a function.

template<
    typename Function>
constraint_t< !is_deferred< decay_t< Function > >::value, deferred_function< decay_t< Function > > > operator()(
    Function && function) const;
  » more...

Passes through anything that is already deferred.

template<
    typename T>
constraint_t< is_deferred< decay_t< T > >::value, decay_t< T > > operator()(
    T && t) const;
  » more...

PrevUpHomeNext