Boost.URL

    • Quick Look
    • URLs
      • Parsing
      • Containers
      • Segments
      • Params
      • Normalization
      • String Token
      • Percent Encoding
      • Formatting
    • Customization
      • Parse Rules
      • Character Sets
      • Compound Rules
      • Ranges
      • RFC 3986
    • Examples
      • QR Code
      • Finicky
      • mailto URLs
      • Magnet Link
      • File Router
      • Router
      • Sanitizing URLs
    • Reference
    • Help Card
  • boost::urls::operator<<

boost::urls::operator<<

Format to an output stream

Synopsis

Declared in <include/boost/url/params_encoded_base.hpp>

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

Description

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

Complexity

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

return os << ps.buffer();

Created with MrDocs