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 682d8fbea2.
PrevUpHomeNext
decode_view::operator<<

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

Synopsis

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

std::ostream&
operator<<(
    std::ostream& os,
    decode_view const& s);
Description

This function serializes the decoded view to the output stream.

Return Value

A reference to the output stream, for chaining

Parameters

Name

Description

os

The output stream to write to

s

The decoded view to write

Convenience header <boost/url.hpp>


PrevUpHomeNext