InstructionRange

An input range that provides access to one disassembled Instruction at a time

abstract
class InstructionRange {}

Members

Functions

empty
bool empty()

True if range has no instructions, i.e. cannot be advanced anymore

front
Instruction front()

Retrieves element of the range

popFront
void popFront()

Drops the front instruction and advances the range

Meta