AK: Add FlyString::to_lowercase() and LogStream operator<<(FlyString)

This commit is contained in:
Andreas Kling 2020-03-22 19:07:02 +01:00
parent 7f8dc347b5
commit c4a6d6ae9f
Notes: sideshowbarker 2024-07-19 08:10:58 +09:00
6 changed files with 39 additions and 16 deletions

View file

@ -93,4 +93,9 @@ bool FlyString::equals_ignoring_case(const StringView& other) const
return StringUtils::equals_ignoring_case(view(), other);
}
FlyString FlyString::to_lowercase() const
{
return String(*m_impl).to_lowercase();
}
}