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 c6a8213e9b.
PrevUpHomeNext
url::buffer

Return the url string.

Synopsis
core::string_view
buffer() const;
Description

This function returns the entire url, which may contain percent escapes.

Example
assert( url_view( "http://www.example.com" ).buffer() == "http://www.example.com" );
Complexity

Constant.

Exception Safety

Throws nothing.


PrevUpHomeNext