Trait map_in_place::MapSliceInPlace [] [src]

pub trait MapSliceInPlace<A> {
    fn map<B, F: FnMut(A) -> B>(self, f: F) -> Box<[B]>;
    fn map_in_place<B, F: FnMut(A) -> B>(self, f: F) -> Box<[B]>;
}

Required Methods

Implementors