buffer

Return the referenced character buffer.

Synopsis

pct_string_view
buffer() const noexcept;

Declared in file <include/boost/url/params_base.hpp> on line 175

Defined in file <src/params_base.cpp> on line 151

Description

This function returns the character buffer referenced by the view. The returned string may contain percent escapes.

Example

assert( url_view( "?first=John&last=Doe" ).params().buffer() == "?first=John&last=Doe" );

Complexity

Constant.

Exception Safety

Throws nothing.