Trait simd::Simd [] [src]

pub unsafe trait Simd {
    type Bool: Simd;
    type Elem;
}

Types that are SIMD vectors.

Associated Types

type Bool: Simd

The corresponding boolean vector type.

type Elem

The element that this vector stores.

Implementors