Trait slice_mip::MapInPlace [] [src]

pub trait MapInPlace<T> {
    fn map_in_place<F>(&mut self, f: F)
    where
        F: FnMut(&T) -> T
; }

A sequence that can be mutated in place.

Required Methods

Apply the given map function to each item in the current sequence and replace each item with its associated map result.

Implementations on Foreign Types

impl<T> MapInPlace<T> for [T]
[src]

[src]

Implementors