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
Numeric Parsers

Expression

Attribute

Description

float_

float

Parse a floating point number into a float

double_

double

Parse a floating point number into a double

long_double

long double

Parse a floating point number into a long double

bin

unsigned

Parse a binary integer into an unsigned

oct

unsigned

Parse an octal integer into an unsigned

hex

unsigned

Parse a hexadecimal integer into an unsigned

ushort_

unsigned short

Parse an unsigned short integer

ulong_

unsigned long

Parse an unsigned long integer

uint_

unsigned int

Parse an unsigned int

ulong_long

unsigned long long

Parse an unsigned long long

short_

short

Parse a short integer

long_

long

Parse a long integer

int_

int

Parse an int

long_long

long long

Parse a long long


PrevUpHomeNext