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

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

An Iterator generator that consumes by reference.

Associated Types

type Iter: Iterator<Item = T>

Underlying Iterator Type

Loading content...

Required methods

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

Get a new Iterator.

Loading content...

Implementors

impl<E> IteratorGen<Expr<E>> for ExprIterContainer<E> where
    E: Expression
[src]

type Iter = ExprIter<E>

Loading content...