mrdocs::ciEqual

Compare two strings for case-insensitive ASCII equality.

Synopsis

Declared in <mrdocs/Support/String/String.hpp>

constexpr
bool
ciEqual(
    std::string_view const a,
    std::string_view const b) noexcept;

Return Value

true if a and b are equal ignoring ASCII case.

Parameters

NameDescription
aFirst string.
bSecond string.