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

Method __next__

python/binaryview.py:8978–8984  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

8976 return self
8977
8978 def __next__(self):
8979 while True:
8980 if not self.results.empty():
8981 return self.results.get()
8982
8983 if (not self.thread.is_alive()) and self.results.empty():
8984 raise StopIteration
8985
8986 def find_all_data(
8987 self, start: int, end: int, data: bytes, flags: FindFlag = FindFlag.FindCaseSensitive,

Callers

nothing calls this directly

Calls 2

emptyMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected