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

AK: Add String::equals_ignoring_case(StringView)

This commit is contained in:
Andreas Kling 2019-12-18 12:43:53 +01:00
parent 413618454b
commit e3c0e75055
2 changed files with 21 additions and 0 deletions

View file

@ -110,6 +110,8 @@ public:
return m_impl->to_uppercase();
}
bool equals_ignoring_case(const StringView&) const;
bool contains(const String&) const;
Vector<String> split_limit(char separator, size_t limit) const;