Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions src/iceberg/util/string_util.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,6 @@ class ICEBERG_EXPORT StringUtils {
[](char c) { return std::toupper(c); }); // NOLINT
return input;
}

static bool EqualsIgnoreCase(const std::string& lhs, const std::string& rhs) {
return std::ranges::equal(
lhs, rhs, [](char lc, char rc) { return std::tolower(lc) == std::tolower(rc); });
}
};

/// \brief Transparent hash function that supports std::string_view as lookup key
Expand Down
Loading