AK: Add case insensitive String::ends_with support

FileSystemPath::has_extension was jumping through hoops and allocating
memory to do a case insensitive comparison needlessly. Extend the
existing String::ends_with method to allow the caller to specify the
case sensitivity required.
This commit is contained in:
Brian Gianforcaro 2020-05-26 02:12:18 -07:00 committed by Andreas Kling
commit 332f96e7ca
Notes: sideshowbarker 2024-07-19 06:07:40 +09:00
7 changed files with 53 additions and 12 deletions

View file

@ -278,9 +278,9 @@ bool String::starts_with(char ch) const
return characters()[0] == ch;
}
bool String::ends_with(const StringView& str) const
bool String::ends_with(const StringView& str, CaseSensitivity case_sensitivity) const
{
return StringUtils::ends_with(*this, str);
return StringUtils::ends_with(*this, str, case_sensitivity);
}
bool String::ends_with(char ch) const