boost::urls::operator==

Return the result of comparing two URLs

Synopsis

Declared in header <boost/url/url_view_base.hpp>

friend
bool
operator==(
    const url_view_base& u0,
    const url_view_base& u1) noexcept;

Description

The URLs are compared component by component as if they were first normalized.

Example

url_view u0( "http://www.a.com/index.htm" );
url_view u1( "http://www.a.com/index.htm" );
assert( u0 == u1 );

Effects

url a(u0);
a.normalize();
url b(u1);
b.normalize();
return a.buffer() == b.buffer();

Complexity

Linear in min( u0.size(), u1.size() )

Exception Safety

Throws nothing