pub trait MapInplaceOps<T> {
    fn map_inplace<'a, A, F>(&mut self, argument: A, map: &F)
    where
        A: Sync + Copy + Send,
        F: 'a + Fn(T, usize, A) -> T + Sync
; }
Expand description

Operations which allow to iterate over the vector and to derive results or to change the vector.

Required Methods

Transforms all vector elements using the function map.

Implementors