pub trait Simd8Lanes<T>: Copy {
    fn from_chunk(v: &[T]) -> Self;
    fn from_incomplete_chunk(v: &[T], remaining: T) -> Self;
}
Available on crate feature compute_comparison only.
Expand description

Trait declaring an 8-lane multi-data.

Required Methods

loads a complete chunk

loads an incomplete chunk, filling the remaining items with remaining.

Implementations on Foreign Types

Implementors