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