logo

Trait std::simd::SimdElement

source ·
pub unsafe trait SimdElement: Sealed + Copy {
 type Mask: MaskElement;
}
🔬 This is a nightly-only experimental API. (portable_simd #86656)
Expand description

Marker trait for types that may be used as SIMD vector elements.

Safety

This trait, when implemented, asserts the compiler can monomorphize #[repr(simd)] structs with the marked type as an element. Strictly, it is valid to impl if the vector will not be miscompiled. Practically, it is user-unfriendly to impl it if the vector won’t compile, even when no soundness guarantees are broken by allowing the user to try.

Required Associated Types

🔬 This is a nightly-only experimental API. (portable_simd #86656)

The mask element type corresponding to this element type.

Implementors

source

impl SimdElement for f32

type Mask = i32

source

impl SimdElement for f64

type Mask = i64

source

impl SimdElement for i8

type Mask = i8

source

impl SimdElement for i16

type Mask = i16

source

impl SimdElement for i32

type Mask = i32

source

impl SimdElement for i64

type Mask = i64

source

impl SimdElement for isize

type Mask = isize

source

impl SimdElement for u8

type Mask = i8

source

impl SimdElement for u16

type Mask = i16

source

impl SimdElement for u32

type Mask = i32

source

impl SimdElement for u64

type Mask = i64

source

impl SimdElement for usize

type Mask = isize

AltStyle によって変換されたページ (->オリジナル) /