pub trait SimdBase64: SimdBasewhere
    Self::Scalar: Scalar<Unsigned = u64, Signed = i64>,
{ fn mul_lo(&self, other: Self) -> Self; }
Expand description

A vector containing 64-bit values.

Required Methods

Zero out the upper-32 bits of each word, and then perform pairwise multiplication.

Implementors