| 631 | |
| 632 | |
| 633 | uint64_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 | |
| 644 | LowLevelILIntegerList::operator vector<uint64_t>() const |
nothing calls this directly
no test coverage detected