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
url_view_base::size

Return the number of characters in the url.

Synopsis
std::size_t
size() const;
Description

This function returns the number of characters in the url's encoded string, not including any null terminator, if present.

Example
assert( url_view( "file:///Program%20Files" ).size() == 23 );
Complexity

Constant.

Exception Safety

Throws nothing.


PrevUpHomeNext