Module std::iter

Overview

Rune support for iterators.

This module contains types and methods for working with iterators in Rune.

Structs

Chain
Empty
Enumerate
Filter
FilterMap
FlatMap
Map
Once
Peekable
Rev
Skip
Take

Functions

empty

Construct an iterator which produces no values.

once

Construct an iterator which produces a single value once.

range

Produce an iterator which starts at the range start and ends at the value

Traits

DoubleEndedIterator

An iterator able to yield elements from both ends.

ExactSizeIterator

An iterator that knows its exact length.

Iterator

A trait for dealing with iterators.