IntoIterRange
Trait for turning collection of values into an iterator over a specific range.
Fully qualified path: core::starknet::storage::IntoIterRange
pub trait IntoIterRange<T>
Trait functions
into_iter_range
Creates an iterator over a range from a collection.
Fully qualified path: core::starknet::storage::IntoIterRange::into_iter_range
fn into_iter_range(self: T, range: core::ops::Range<u64>) -> Self::IntoIter
into_iter_full_range
Creates an iterator over the full range of a collection.
Fully qualified path: core::starknet::storage::IntoIterRange::into_iter_full_range
fn into_iter_full_range(self: T) -> Self::IntoIter
Trait types
IntoIter
Fully qualified path: core::starknet::storage::IntoIterRange::IntoIter
type IntoIter;