Struct core::simd::f32x16 [] [src]

#[repr(simd)]
pub struct f32x16(_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _);
🔬 This is a nightly-only experimental API. (stdsimd #48556)

A 512-bit vector with 16 f32 lanes.

Methods

impl f32x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Creates a new instance with each vector elements initialized with the provided values.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Returns the number of vector lanes.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Constructs a new instance with each element initialized to value.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Extracts the value at index.

Panics

If index >= Self::lanes().

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Extracts the value at index.

If index >= Self::lanes() the behavior is undefined.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Returns a new vector where the value at index is replaced by new_value.

Panics

If index >= Self::lanes().

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Returns a new vector where the value at index is replaced by new_value.

Panics

If index >= Self::lanes().

impl f32x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Writes the values of the vector to the slice.

Panics

If slice.len() < Self::lanes() or &slice[0] is not aligned to an align_of::<Self>() boundary.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Writes the values of the vector to the slice.

Panics

If slice.len() < Self::lanes().

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Writes the values of the vector to the slice.

Precondition

If slice.len() < Self::lanes() or &slice[0] is not aligned to an align_of::<Self>() boundary, the behavior is undefined.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Writes the values of the vector to the slice.

Precondition

If slice.len() < Self::lanes() the behavior is undefined.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes() or &slice[0] is not aligned to an align_of::<Self>() boundary.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Instantiates a new vector with the values of the slice.

Precondition

If slice.len() < Self::lanes() or &slice[0] is not aligned to an align_of::<Self>() boundary, the behavior is undefined.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Instantiates a new vector with the values of the slice.

Precondition

If slice.len() < Self::lanes() the behavior is undefined.

impl f32x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Lane-wise equality comparison.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Lane-wise inequality comparison.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Lane-wise less-than comparison.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Lane-wise less-than-or-equals comparison.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Lane-wise greater-than comparison.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Lane-wise greater-than-or-equals comparison.

impl f32x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Lane-wise addition of the vector elements.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Lane-wise multiplication of the vector elements.

impl f32x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Largest vector value.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Smallest vector value.

Trait Implementations

impl From<f32x16> for i16x16
[src]

Performs the conversion.

impl From<f32x16> for u16x16
[src]

Performs the conversion.

impl Copy for f32x16
[src]

impl Debug for f32x16
[src]

Formats the value using the given formatter. Read more

impl PartialOrd for f32x16
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Clone for f32x16
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Add for f32x16
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl Sub for f32x16
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl Mul for f32x16
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl Div for f32x16
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl Rem for f32x16
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl AddAssign for f32x16
[src]

Performs the += operation.

impl SubAssign for f32x16
[src]

Performs the -= operation.

impl MulAssign for f32x16
[src]

Performs the *= operation.

impl DivAssign for f32x16
[src]

Performs the /= operation.

impl RemAssign for f32x16
[src]

Performs the %= operation.

impl Neg for f32x16
[src]

The resulting type after applying the - operator.

Performs the unary - operation.

impl PartialEq<f32x16> for f32x16
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Default for f32x16
[src]

Returns the "default value" for a type. Read more

impl FromBits<f32x16> for i8x64
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<f32x16> for u8x64
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<f32x16> for i16x32
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<f32x16> for u16x32
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<f32x16> for i32x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<f32x16> for u32x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<u64x8> for f32x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<i64x8> for f32x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<f64x8> for f32x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<u32x16> for f32x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<i32x16> for f32x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<u16x32> for f32x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<i16x32> for f32x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<i8x64> for f32x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<u8x64> for f32x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<b8x64> for f32x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<f32x16> for i64x8
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<f32x16> for u64x8
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<f32x16> for f64x8
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl From<u32x16> for f32x16
[src]

Performs the conversion.

impl From<i32x16> for f32x16
[src]

Performs the conversion.

impl From<u16x16> for f32x16
[src]

Performs the conversion.

impl From<i16x16> for f32x16
[src]

Performs the conversion.

impl From<u8x16> for f32x16
[src]

Performs the conversion.

impl From<i8x16> for f32x16
[src]

Performs the conversion.

impl From<f32x16> for i32x16
[src]

Performs the conversion.

impl From<f32x16> for u32x16
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for f32x16

impl Sync for f32x16