Trait faster::iters::IntoPackedIterator [] [src]

pub trait IntoPackedIterator {
    type Iter: PackedIterator;
    fn into_simd_iter(self) -> Self::Iter;
}

A trait which transforms a contiguous collection into an owned stream of vectors.

Associated Types

Required Methods

Return an iterator over this data which will automatically pack values into SIMD vectors. See PackedIterator::simd_map and PackedIterator::simd_reduce for more information.

Implementors