Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
decode_view::operator>= (3 of 3 overloads)

Return the result of comparing s0 and s1.

Synopsis

Defined in header <boost/url/decode_view.hpp>

template<
    class String>
friend bool
operator>=(
    String const& s0,
    decode_view s1);
Description

This function compares the string s0, to the string that results from applying percent-decoding to s1. Does not allocate.

Constraints
std::is_convertible_v< String, string_view >
Complexity

Linear in s0.size() + s1.size().

Exception Safety

Throws nothing.

Convenience header <boost/url.hpp>


PrevUpHomeNext