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

Method __iter__

python/interaction.py:1008–1011  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1006 return self._report_from_index(i)
1007
1008 def __iter__(self):
1009 count = len(self)
1010 for i in range(0, count):
1011 yield self._report_from_index(i)
1012
1013 def __repr__(self):
1014 return "<reports: %s>" % repr(list(self))

Callers

nothing calls this directly

Calls 1

_report_from_indexMethod · 0.95

Tested by

no test coverage detected