boost::urls::operator<
Return the result of comparing two URLs
Synopsis
Declared in <boost/url/url_view_base.hpp>
friend
bool
operator<(
url_view_base const& u0,
url_view_base const& u1) noexcept;
Example
url_view u0( "http://www.a.com/index.htm" );
url_view u1( "http://www.b.com/index.htm" );
assert( u0 < u1 );
Parameters
Name |
Description |
u0 |
The first url to compare |
u1 |
The second url to compare |
Created with MrDocs