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 for the latest Boost documentation.
PrevUpHomeNext

Type definition llong

llong

Synopsis

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


typedef integral_constant< long long, I > llong;

Description

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


PrevUpHomeNext