diff --git a/AK/String.h b/AK/String.h index 756a0e620be..4d2a634b539 100644 --- a/AK/String.h +++ b/AK/String.h @@ -151,16 +151,9 @@ public: Optional find_byte_offset(StringView substring, size_t from_byte_offset = 0) const; [[nodiscard]] bool operator==(String const&) const; - [[nodiscard]] bool operator!=(String const& other) const { return !(*this == other); } - [[nodiscard]] bool operator==(FlyString const&) const; - [[nodiscard]] bool operator!=(FlyString const& other) const { return !(*this == other); } - [[nodiscard]] bool operator==(StringView) const; - [[nodiscard]] bool operator!=(StringView other) const { return !(*this == other); } - [[nodiscard]] bool operator==(char const* cstring) const; - [[nodiscard]] bool operator!=(char const* cstring) const { return !(*this == cstring); } // NOTE: UTF-8 is defined in a way that lexicographic ordering of code points is equivalent to lexicographic ordering of bytes. [[nodiscard]] int operator<=>(String const& other) const { return this->bytes_as_string_view().compare(other.bytes_as_string_view()); }