[][src]Trait exprz_core::iter::IntoIteratorGen

pub trait IntoIteratorGen<T> {
    type IterGen: IteratorGen<T>;
    fn gen(&self) -> Self::IterGen;
}

Convert a type into a IteratorGen.

Associated Types

type IterGen: IteratorGen<T>

Underlying IteratorGen Type

Loading content...

Required methods

fn gen(&self) -> Self::IterGen

Get a new IteratorGen.

Loading content...

Implementors

Loading content...