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

PrevUpHomeNext

Type definition integral_constant

integral_constant

Synopsis

// In header: <boost/parser/tuple.hpp>


typedef hana::integral_constant< T, I > integral_constant;

Description

A template alias that is boost::hana::integral_constant<T, I> if BOOST_PARSER_USE_HANA_TUPLE is defined, and std::integral_constant<T, I> otherwise.


PrevUpHomeNext