Return true if s0 is less than s1 using case-insensitive comparison
<boost/url/grammar/ci_string.hpp>
bool
ci_is_less(
core::string_view s0,
core::string_view s1) noexcept;
The comparison algorithm implements a case-insensitive total order on the set of all strings; however, it is not a lexicographical comparison. The function is defined only for strings containing low-ASCII characters.
assert( ! ci_is_less( "Boost", "boost" ) );
true if s0 is case-insensitively less than s1, otherwise false
| Name | Description |
|---|---|
| s0 | The first string |
| s1 | The second string |