MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / __ne__

Method __ne__

python/lineardisassembly.py:525–528  ·  view source on GitHub ↗
(self, other)

Source from the content-addressed store, hash-verified

523 return LinearViewCursor.compare(self, other) == 0
524
525 def __ne__(self, other):
526 if not isinstance(other, self.__class__):
527 return NotImplemented
528 return LinearViewCursor.compare(self, other) != 0
529
530 def __lt__(self, other):
531 if not isinstance(other, self.__class__):

Callers

nothing calls this directly

Calls 1

compareMethod · 0.45

Tested by

no test coverage detected