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
Integer Generators

Expression

Attribute

Description

lit(num)

Unused

Generate num

short_

short

Generate a short integer

short_(num)

short

Generate num as a short integer, if an attribute is supplied it must match

int_

int

Generate an int

int_(num)

int

Generate num as an int, if an attribute is supplied it must match

long_

long

Generate a long integer

long_(num)

long

Generate num as long integer, if an attribute is supplied it must match

long_long

long long

Generate a long long

long_long(num)

long long

Generate num as a long long, if an attribute is supplied it must match

int_generator<
    Num, Radix, force_sign
>()

Num

Generate a Num

int_generator<
    Num, Radix, force_sign
>()(num)

Num

Generate a num as a Num, if an attribute is supplied it must match


PrevUpHomeNext