1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 02:13:56 +09:00

AK: Add FlyString::equals_ignoring_case(StringView)

And share the code with String by moving the logic to StringUtils. :^)
This commit is contained in:
Andreas Kling 2020-03-22 13:07:45 +01:00
parent 0efa47b7ef
commit 26bc3d4ea0
Notes: sideshowbarker 2024-07-19 08:11:05 +09:00
6 changed files with 31 additions and 16 deletions

View file

@ -88,4 +88,9 @@ int FlyString::to_int(bool& ok) const
return StringUtils::convert_to_int(view(), ok);
}
bool FlyString::equals_ignoring_case(const StringView& other) const
{
return StringUtils::equals_ignoring_case(view(), other);
}
}