Trait list_fn::FlatMapFn[][src]

pub trait FlatMapFn {
    type Input;
    type OutputList: ListFn;
    fn map(&self, input: Self::Input) -> Self::OutputList;
}

Associated Types

Required methods

Map the given input item into a list.

Implementors