Return true if s0 equals s1 using case-insensitive comparison
<boost/url/grammar/ci_string.hpp>
bool
ci_is_equal(
    core::string_view s0,
    core::string_view s1) noexcept;
The function is defined only for strings containing low-ASCII characters.
assert( ci_is_equal( "Boost", "boost" ) );
true if s0 case-insensitively equals s1, otherwise false
| Name | Description | 
|---|---|
| s0 | The first string | 
| s1 | The second string |