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 an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

deferred_conditional::otherwise

Set the false branch of the conditional.

template<
    typename T>
deferred_conditional< OnTrue, T > otherwise(
    T on_false,
    typename constraint< is_deferred< T >::value >::type *  = 0,
    typename constraint< !is_same< typename conditional< true, OnTrue, T >::type, deferred_noop >::value >::type *  = 0,
    typename constraint< is_same< typename conditional< true, OnFalse, T >::type, deferred_noop >::value >::type *  = 0);

PrevUpHomeNext