Trait yagen::FlatMap

source ·
pub trait FlatMap {
    type Input;
    type OutputIterator: Iterator;

    // Required method
    fn call(self, input: Self::Input) -> Self::OutputIterator;
}

Required Associated Types§

Required Methods§

source

fn call(self, input: Self::Input) -> Self::OutputIterator

Implementors§