boost::urls::url_view_base::compare

Return the result of comparing this with another url

Synopsis

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

int
compare(url_view_base const& other) const noexcept;

Description

This function compares two URLs according to Syntax-Based comparison algorithm.

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

Throws nothing.

  • 6.2.2 Syntax-Based Normalization (rfc3986)
  • Return Value

    -1 if `*this < other`, 0 if `this == other`, and 1 if `this > other`.

    Created with MrDocs