boost::urls::operator>

Return the result of comparing two authorities The authorities are compared component by component as if they were first normalized.

Synopsis

bool
operator>(
    authority_view const& a0,
    authority_view const& a1) noexcept;
constexpr
bool
operator>(
    decode_view const& lhs,
    decode_view const& rhs) noexcept;
template<std::convertible_to<core::string_view> S>
constexpr
bool
operator>(
    decode_view const& lhs,
    S const& rhs) noexcept;
template<std::convertible_to<core::string_view> S>
constexpr
bool
operator>(
    S const& lhs,
    decode_view const& rhs) noexcept;
bool
operator>(
    url_view_base const& u0,
    url_view_base const& u1) noexcept;

Description

Complexity

Linear in min( a0.size(), a1.size() )

Exception Safety

Throws nothing

Created with MrDocs