Forward declares logical metafunctions. More...
#include <boost/mpl11/detail/config.hpp>
Go to the source code of this file.
Classes | |
struct | boost::mpl11::and_< xs > |
Returns the result of short-circuit logical and (&& ) on its arguments. More... | |
struct | boost::mpl11::or_< xs > |
Returns the result of short-circuit logical or (|| ) on its arguments. More... | |
struct | boost::mpl11::not_< x > |
Returns the logical negation (! ) of its argument. More... | |
struct | boost::mpl11::if_c< Condition, Then, Else > |
Equivalent to if_<bool_<Condition>, Then, Else> . More... | |
struct | boost::mpl11::else_if_c< Condition, Then, Else > |
Equivalent to else_if<bool_<Condition>, Then, Else> . More... | |
struct | boost::mpl11::if_< Condition, Then, Else > |
Evaluates one of two branches based on a condition. More... | |
struct | boost::mpl11::else_if< Condition, Then, Else > |
Equivalent to if_ ; provided for use with if_ . More... | |
struct | boost::mpl11::else_< Else > |
Transparent alias to its argument; provided for use with if_ . More... | |
Forward declares logical metafunctions.