size

Return the number of decoded characters

Synopsis

size_type size() noexcept;

Declared in file <boost/url/decode_view.hpp> at line 263

Description

Example

assert( decode_view( "Program%20Files" ).size() == 13 );

Effects

return std::distance( this->begin(), this->end() );

Complexity

Constant.

Exception Safety

Throws nothing.