pub trait SimdBase8: SimdBasewhere
    Self::Scalar: Scalar<Unsigned = u8, Signed = i8>,
{ fn shift_bytes_left<const AMOUNT: usize>(&self) -> Self; fn shift_bytes_right<const AMOUNT: usize>(&self) -> Self; fn most_significant_bits(&self) -> u32; }
Expand description

A vector containing 8-bit values.

Required Methods

Shift within 128-bit lanes.

Shift within 128-bit lanes.

Get the sign/most significant bits of the elements of the vector.

Implementors