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

Method __iter__

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

Source from the content-addressed store, hash-verified

2220 self._functions = iter(functions)
2221
2222 def __iter__(self):
2223 while True:
2224 while len(self._func_queue) < self._preload_limit:
2225 try:
2226 self._func_queue.append(_function.AdvancedFunctionAnalysisDataRequestor(next(self._functions)))
2227 except StopIteration:
2228 break
2229 if not self._func_queue:
2230 break
2231 yield self._func_queue.popleft().function
2232
2233
2234class MemoryMap:

Callers

nothing calls this directly

Calls 2

appendMethod · 0.45

Tested by

no test coverage detected