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

operator<<

Serialize an element to an output stream.

std::ostream&
operator<<(
    std::ostream& os,
    value const& t);
  » more...

std::ostream&
operator<<(
    std::ostream& os,
    array const& t);
  » more...

std::ostream&
operator<<(
    std::ostream& os,
    object const& t);
  » more...

std::ostream&
operator<<(
    std::ostream& os,
    string const& t);
  » more...

Format a kind to an output stream.

std::ostream&
operator<<(
    std::ostream& os,
    kind k);
  » more...

PrevUpHomeNext