RangeIterator
Represents an iterator located at cur
, whose end is end
(cur <= end
).
Fully qualified path: core::ops::range::RangeIterator
#[derive(Clone, Drop, PartialEq)]
pub struct RangeIterator<T> {
cur: T,
end: T,
}
Represents an iterator located at cur
, whose end is end
(cur <= end
).
Fully qualified path: core::ops::range::RangeIterator
#[derive(Clone, Drop, PartialEq)]
pub struct RangeIterator<T> {
cur: T,
end: T,
}