mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-06 16:19:23 +00:00
AK: Make CaseInsensitiveStringTraits allocation-free
Instead of calling String::to_lowercase(), do case-insensitive hashing and comparison.
This commit is contained in:
parent
1b6ed558bb
commit
2dd3b54827
Notes:
sideshowbarker
2024-07-17 18:32:08 +09:00
Author: https://github.com/awesomekling
Commit: 2dd3b54827
3 changed files with 9 additions and 2 deletions
|
@ -133,6 +133,11 @@ NonnullRefPtr<StringImpl> StringImpl::to_uppercase() const
|
|||
return const_cast<StringImpl&>(*this);
|
||||
}
|
||||
|
||||
unsigned StringImpl::case_insensitive_hash() const
|
||||
{
|
||||
return case_insensitive_string_hash(characters(), length());
|
||||
}
|
||||
|
||||
void StringImpl::compute_hash() const
|
||||
{
|
||||
if (!length())
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue