pub trait Iterator {
// Required methods
fn reset(&mut self);
fn next(&mut self) -> Option<&Operator<'_>>;
fn curr_loc(&self) -> (Location, bool);
fn curr_op(&self) -> Option<&Operator<'_>>;
}
Expand description
Iterator trait that must be satisfied by all Iterators to enable code traversal.