Trait list_fn::Map

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

Provided Methods§

source

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

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<L: ListFn> Map for L