boost::urls::decode_view::size
Return the number of decoded characters
Synopsis
size_type
size() const noexcept;
Description
assert( decode_view( "Program%20Files" ).size() == 13 );
return std::distance( this->begin(), this->end() );
Throws nothing.
Created with MrDocs