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

See here for more information about Stream Generators.

Expression

Attribute

Description

stream

hold_any

Generate narrow character (char) based output using the matching streaming operator<<()

stream(s)

Unused

Generate narrow character (char) based output from the immediate argument s using the matching streaming operator<<()

wstream

whold_any

Generate wide character (wchar_t) based output using the matching streaming operator<<()

wstream(s)

Unused

Generate wide character (wchar_t) based output from the immediate argument s using the matching streaming operator<<()

stream_generator<
    Char
>()

basic_hold_any<Char>

Generate output based on the given character type (Char) using the matching streaming operator<<()

stream_generator<
    Char
>()(s)

Unused

Generate output based on the given character type Char from the immediate argument s using the matching streaming operator<<()


PrevUpHomeNext