pub trait FlatMapFn {
    type Input;
    type OutputList: ListFn;
    // Required method
    fn map(&self, input: Self::Input) -> Self::OutputList;
}Required Associated Types§
type Input
type OutputList: ListFn
Required Methods§
sourcefn map(&self, input: Self::Input) -> Self::OutputList
 
fn map(&self, input: Self::Input) -> Self::OutputList
Map the given input item into a list.