Map

Trait 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>>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl<L: ListFn> Map for L