diff options
Diffstat (limited to 'AK/Utf16View.h')
-rw-r--r-- | AK/Utf16View.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/AK/Utf16View.h b/AK/Utf16View.h index fc1c4ca87d..5f58c12036 100644 --- a/AK/Utf16View.h +++ b/AK/Utf16View.h @@ -104,6 +104,8 @@ public: return validate(valid_code_units); } + bool equals_ignoring_case(Utf16View const&) const; + private: u16 const* begin_ptr() const { return m_code_units.data(); } u16 const* end_ptr() const { return begin_ptr() + m_code_units.size(); } |