> ## Documentation Index
> Fetch the complete documentation index at: https://docs.starknet.io/llms.txt
> Use this file to discover all available pages before exploring further.

# core::ops::range::RangeIterator

Represents an iterator located at `cur`, whose end is `end` (`cur < end`).

```rust theme={null}
struct RangeIterator<T> {
    cur: T,
    end: T,
}
```
