Trait for turning collection of values into an iterator over a specific range.

Signature

pub trait IntoIterRange

Trait functions

into_iter_range

Creates an iterator over a range from a collection.

Signature

fn into_iter_range(self: T, range: Range) -> IntoIterRangeIntoIter

into_iter_full_range

Creates an iterator over the full range of a collection.

Signature

fn into_iter_full_range(self: T) -> IntoIterRangeIntoIter

Trait types

IntoIter

Signature

type IntoIter;