boost::urls::decode_view::remove_prefix
Remove the first characters
Synopsis
Declared in <include/boost/url/decode_view.hpp>
void
remove_prefix(size_type n);
cpp
Description
decode_view d( "Program%20Files" );
d.remove_prefix( 8 );
assert( d == "Files" );
cpp
not this->empty()
cpp