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

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

An Iterator generator that consumes by reference.

Associated Types

type Item: Borrow<T>[src]

type Iter: Iterator<Item = Self::Item>[src]

Underlying Iterator Type

Loading content...

Required methods

pub fn iter(&self) -> Self::Iter[src]

Get a new Iterator.

Loading content...

Implementors

Loading content...