Trait list_fn::FlatMapFn[][src]

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

Associated Types

Loading content...

Required methods

fn map(&self, input: Self::InputItem) -> Self::ItemList[src]

Expand description

Map the given input item into a list.

Loading content...

Implementors

Loading content...