mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05:00
AK: Add FlyString::hash()
This commit is contained in:
parent
0243ac5d04
commit
8cbb8491cb
1 changed files with 2 additions and 0 deletions
|
@ -55,6 +55,8 @@ public:
|
|||
const char* characters() const { return m_impl ? m_impl->characters() : nullptr; }
|
||||
size_t length() const { return m_impl ? m_impl->length() : 0; }
|
||||
|
||||
u32 hash() const { return m_impl ? m_impl->hash() : 0; }
|
||||
|
||||
StringView view() const;
|
||||
|
||||
FlyString to_lowercase() const;
|
||||
|
|
Loading…
Add table
Reference in a new issue