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 a snapshot of the master branch, built from commit 579430ad1f.
PrevUpHomeNext

operator<<

Format the url to the output stream.

std::ostream&
operator<<(
    std::ostream& os,
    url_view_base const& u);
  » more...

Format to an output stream.

std::ostream&
operator<<(
    std::ostream& os,
    segments_encoded_base const& ps);
  » more...

std::ostream&
operator<<(
    std::ostream& os,
    segments_base const& ps);
  » more...

std::ostream&
operator<<(
    std::ostream& os,
    params_encoded_base const& qp);
  » more...

std::ostream&
operator<<(
    std::ostream& os,
    params_base const& qp);
  » more...

Format the address to an output stream.

std::ostream&
operator<<(
    std::ostream& os,
    ipv6_address const& addr);
  » more...

std::ostream&
operator<<(
    std::ostream& os,
    ipv4_address const& addr);
  » more...

Format the string with percent-decoding applied to the output stream.

std::ostream&
operator<<(
    std::ostream& os,
    decode_view const& s);
  » more...

Format the encoded authority to the output stream.

std::ostream&
operator<<(
    std::ostream& os,
    authority_view const& a);
  » more...

PrevUpHomeNext