Skip to main content

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.

Represents an iterator located at cur, whose end is end (cur < end).
struct RangeIterator<T> {
    cur: T,
    end: T,
}