FlatMapFn

Trait FlatMapFn 

Source
pub trait FlatMapFn {
    type Input;
    type OutputList: ListFn;

    // Required method
    fn map(&self, input: Self::Input) -> Self::OutputList;
}

Required Associated Types§

Required Methods§

Source

fn map(&self, input: Self::Input) -> Self::OutputList

Map the given input item into a list.

Implementors§