Compare two strings for case-insensitive ASCII equality.
Declared in <mrdocs/Support/String/String.hpp>
constexpr
bool
ciEqual(
std::string_view const a,
std::string_view const b) noexcept;
true if a and b are equal ignoring ASCII case.
| Name | Description |
|---|---|
| a | First string. |
| b | Second string. |