21 bool operator()(std::string_view x, std::string_view y)
const noexcept {
22 return algorithm::AreStringsEqualConstTime(x, y);
30 noexcept(algorithm::AreStringsEqualConstTime(x.GetUnderlying(), y.GetUnderlying())),
31 "The comparator should not throw as this affects efficiency "
35 return algorithm::AreStringsEqualConstTime(x.GetUnderlying(), y.GetUnderlying());