Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Type definition llong

llong

Synopsis

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


template<long long I> 
using llong = integral_constant< long long, I >;

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