Trait ilattice::vector::Map[][src]

pub trait Map<T> {
    fn map(self, f: impl Fn(T) -> T) -> Self;
}

Required methods

Applies f to all components, returning the results as Self.

Implementations on Foreign Types

Applies f to all components, returning the results as Self.

Implementors