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

Method operator[]

lowlevelilinstruction.cpp:633–641  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

631
632
633uint64_t LowLevelILIntegerList::operator[](size_t i) const
634{
635 if (i >= size())
636 throw LowLevelILInstructionAccessException();
637 auto iter = begin();
638 for (size_t j = 0; j < i; j++)
639 ++iter;
640 return *iter;
641}
642
643
644LowLevelILIntegerList::operator vector<uint64_t>() const

Callers

nothing calls this directly

Calls 5

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

Tested by

no test coverage detected