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

Method __gt__

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

Source from the content-addressed store, hash-verified

538 return LinearViewCursor.compare(self, other) <= 0
539
540 def __gt__(self, other):
541 if not isinstance(other, self.__class__):
542 return NotImplemented
543 return LinearViewCursor.compare(self, other) > 0
544
545 def __ge__(self, other):
546 if not isinstance(other, self.__class__):

Callers

nothing calls this directly

Calls 1

compareMethod · 0.45

Tested by

no test coverage detected