MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / operator[]

Method operator[]

highlevelilinstruction.cpp:310–318  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

308
309
310uint64_t HighLevelILIntegerList::operator[](size_t i) const
311{
312 if (i >= size())
313 throw HighLevelILInstructionAccessException();
314 auto iter = begin();
315 for (size_t j = 0; j < i; j++)
316 ++iter;
317 return *iter;
318}
319
320
321HighLevelILIntegerList::operator vector<uint64_t>() const

Callers

nothing calls this directly

Calls 5

HighLevelILOperandClass · 0.85
findMethod · 0.80
sizeFunction · 0.50
endMethod · 0.45

Tested by

no test coverage detected