(&mut self)
| 100 | type Item = LowLevelILInstruction<'func, A, M, F>; |
| 101 | |
| 102 | fn next(&mut self) -> Option<Self::Item> { |
| 103 | self.range |
| 104 | .next() |
| 105 | .map(LowLevelInstructionIndex) |
| 106 | .and_then(|idx| self.function.instruction_from_index(idx)) |
| 107 | } |
| 108 | } |
nothing calls this directly
no test coverage detected