[][src]Trait exprz_core::iter::IteratorGen

pub trait IteratorGen<T> {
    type Item: Borrow<T>;
    type Iter: Iterator<Item = Self::Item>;
    fn iter(&self) -> Self::Iter;
}

An Iterator generator that consumes by reference.

Associated Types

type Item: Borrow<T>

type Iter: Iterator<Item = Self::Item>

Underlying Iterator Type

Loading content...

Required methods

fn iter(&self) -> Self::Iter

Get a new Iterator.

Loading content...

Implementors

Loading content...