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

Method __iter__

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

Source from the content-addressed store, hash-verified

1979 self._symbol_cache[mapped_str] = [sym]
1980
1981 def __iter__(self) -> Iterator[str]:
1982 if self._symbol_cache is None:
1983 self._build_symbol_cache()
1984 assert self._symbol_cache is not None
1985 yield from self._symbol_cache
1986
1987 def __next__(self) -> List['_types.CoreSymbol']:
1988 if self._symbol_cache is None:

Callers

nothing calls this directly

Calls 1

_build_symbol_cacheMethod · 0.95

Tested by

no test coverage detected