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

PrevUpHomeNext
operator<< (2 of 9 overloads)

Format to an output stream.

Synopsis

Defined in header <boost/url/segments_encoded_base.hpp>

std::ostream&
operator<<(
    std::ostream& os,
    segments_encoded_base const& ps);
Description

Any percent-escapes are emitted as-is; no decoding is performed.

Complexity

Linear in ps.buffer().size().

Effects
return os << ps.buffer();

Convenience header <boost/url.hpp>


PrevUpHomeNext