Trait list_fn::Map[][src]

pub trait Map: ListFn {
    fn map<M: MapFn<Input = Self::Item>>(
        self,
        m: M
    ) -> FlatMapList<Self, MapWrap<M>> { ... } }

Provided methods

fn map<M: MapFn<Input = Self::Item>>(
    self,
    m: M
) -> FlatMapList<Self, MapWrap<M>>
[src]

Implementors

impl<L: ListFn> Map for L[src]