boost::urls::grammar::ci_is_equal

Return true if s0 equals s1 using case‐insensitive comparison

Synopses

Return true if s0 equals s1 using case‐insensitive comparison

bool
ci_is_equal(
    core::string_view s0,
    core::string_view s1) noexcept;

Return true if s0 equals s1 using case‐insensitive comparison

template<
    class String0,
    class String1>
bool
ci_is_equal(
    String0 const& s0,
    String1 const& s1)
requires ! std::is_convertible<
                String0, core::string_view>::value ||
            ! std::is_convertible<
                String1, core::string_view>::value;

Return Value

true if s0 case‐insensitively equals s1, otherwise false

Parameters

Name

Description

s0

The first string

s1

The second string

See Also

Created with MrDocs