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

Method __ge__

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

Source from the content-addressed store, hash-verified

543 return LinearViewCursor.compare(self, other) > 0
544
545 def __ge__(self, other):
546 if not isinstance(other, self.__class__):
547 return NotImplemented
548 return LinearViewCursor.compare(self, other) >= 0
549
550 def __cmp__(self, other):
551 if not isinstance(other, self.__class__):

Callers

nothing calls this directly

Calls 1

compareMethod · 0.45

Tested by

no test coverage detected