...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Remove the scheme.
url& remove_scheme();
This function removes the scheme if it is present.
assert( url( "http://www.example.com/index.htm" ).remove_scheme().buffer() == "//www.example.com/index.htm" );
this->has_scheme() == false && this->scheme_id() == scheme::none
Linear in this->size()
.
Throws nothing.
URI = scheme ":" hier-part [ "?" query ] [ "#" fragment ]
/root/project/libs/url/include/boost/url/url.hpp