pub type VectorI32<A> = Vector<I32, A>;Expand description
Generic i32 SIMD vector register.
Aliased Type§
#[repr(transparent)]pub struct VectorI32<A> {
pub raw: <A as SimdKernel<I32>>::Vector,
/* private fields */
}Fields§
§raw: <A as SimdKernel<I32>>::VectorThe underlying raw vector register.