MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / operator!=

Method operator!=

binaryninjaapi.h:380–380  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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); }

Callers

nothing calls this directly

Calls 1

GetObjectFunction · 0.85

Tested by

no test coverage detected