pub trait Simd8Lanes<T>: Copy {
    fn from_chunk(v: &[T]) -> Self;
fn from_incomplete_chunk(v: &[T], remaining: T) -> Self; }
This is supported 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