1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 06:17:35 +00:00

AK: Add StringView::equals_ignoring_case()

StringUtils::equals_ignoring_case() already operates on a StringView&,
so StringView should have the method directly without having to go
through a temporary String (which also has the method).
This commit is contained in:
Linus Groh 2020-05-13 17:59:31 +01:00 committed by Andreas Kling
parent 6cd4d136a0
commit 1277290a4a
2 changed files with 6 additions and 0 deletions

View file

@ -78,6 +78,7 @@ public:
bool ends_with(char) const;
bool matches(const StringView& mask, CaseSensitivity = CaseSensitivity::CaseInsensitive) const;
bool contains(char) const;
bool equals_ignoring_case(const StringView& other) const;
Optional<size_t> find_first_of(char) const;
Optional<size_t> find_first_of(const StringView&) const;