| 378 | bool operator==(const T* obj) const { return T::GetObject(m_obj) == T::GetObject(obj); } |
| 379 | bool operator==(const Ref<T>& obj) const { return T::GetObject(m_obj) == T::GetObject(obj.m_obj); } |
| 380 | bool operator!=(const T* obj) const { return T::GetObject(m_obj) != T::GetObject(obj); } |
| 381 | bool operator!=(const Ref<T>& obj) const { return T::GetObject(m_obj) != T::GetObject(obj.m_obj); } |
| 382 | bool operator<(const T* obj) const { return T::GetObject(m_obj) < T::GetObject(obj); } |
| 383 | bool operator<(const Ref<T>& obj) const { return T::GetObject(m_obj) < T::GetObject(obj.m_obj); } |
nothing calls this directly
no test coverage detected