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
params_encoded_view::operator params_view

Conversion.

Synopsis
operator params_view() const;
Description

This conversion returns a new view which references the same underlying character buffer, and whose iterators and members return ordinary strings with decoding applied to any percent escapes. Ownership is not transferred; the caller is responsible for ensuring the lifetime of the buffer extends until it is no longer referenced.

Example
params_view qp = parse_path( "/path/to/file.txt" ).value();
Postconditions
params_view( *this ).buffer().data() == this->buffer().data()
Complexity

Constant

Exception Safety

Throws nothing


PrevUpHomeNext