diff --git a/AK/FlyString.h b/AK/FlyString.h index fc89e840b2..a306682813 100644 --- a/AK/FlyString.h +++ b/AK/FlyString.h @@ -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;