Trait npsimd::intel::Array

source ·
pub unsafe trait Array: Copy + Freeze {
    type Primitive: PrimitiveVector;
}
Available on x86 or x86-64 only.

Required Associated Types§

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl<T, const LEN: usize> Array for [T; LEN]
where T: Element<LEN>,

source§

type Primitive = <T as Element<LEN>>::Primitive

Implementors§