Struct std::simd::f64x4 [] [src]

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

A 256-bit vector with 4 f64 lanes.

Methods

impl f64x4
[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 f64x4
[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 f64x4
[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 f64x4
[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 f64x4
[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 Copy for f64x4
[src]

impl Div<f64x4> for f64x4
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl Debug for f64x4
[src]

Formats the value using the given formatter. Read more

impl Add<f64x4> for f64x4
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl DivAssign<f64x4> for f64x4
[src]

Performs the /= operation.

impl SubAssign<f64x4> for f64x4
[src]

Performs the -= operation.

impl PartialEq<f64x4> for f64x4
[src]

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

This method tests for !=.

impl From<i16x4> for f64x4
[src]

Performs the conversion.

impl From<u32x4> for f64x4
[src]

Performs the conversion.

impl From<f64x4> for i64x4
[src]

Performs the conversion.

impl From<f64x4> for i8x4
[src]

Performs the conversion.

impl From<f64x4> for f32x4
[src]

Performs the conversion.

impl From<f64x4> for u16x4
[src]

Performs the conversion.

impl From<f64x4> for i32x4
[src]

Performs the conversion.

impl From<u16x4> for f64x4
[src]

Performs the conversion.

impl From<f64x4> for i16x4
[src]

Performs the conversion.

impl From<i8x4> for f64x4
[src]

Performs the conversion.

impl From<u64x4> for f64x4
[src]

Performs the conversion.

impl From<i64x4> for f64x4
[src]

Performs the conversion.

impl From<f64x4> for u32x4
[src]

Performs the conversion.

impl From<f64x4> for u8x4
[src]

Performs the conversion.

impl From<f32x4> for f64x4
[src]

Performs the conversion.

impl From<f64x4> for u64x4
[src]

Performs the conversion.

impl From<i32x4> for f64x4
[src]

Performs the conversion.

impl From<u8x4> for f64x4
[src]

Performs the conversion.

impl Mul<f64x4> for f64x4
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl FromBits<f64x4> for __m256i
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<f64x4> for u16x16
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<b8x32> for f64x4
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<f64x4> for i16x16
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<f32x8> for f64x4
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<i32x8> for f64x4
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<f64x4> for u64x4
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<__m256> for f64x4
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<f64x4> for __m256
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<i64x4> for f64x4
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<i8x32> for f64x4
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<f64x4> for u32x8
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<__m256d> for f64x4
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<f64x4> for u8x32
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<i16x16> for f64x4
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<u64x4> for f64x4
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<f64x4> for __m256d
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<u32x8> for f64x4
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<f64x4> for i8x32
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<u16x16> for f64x4
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<__m256i> for f64x4
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<f64x4> for i64x4
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<f64x4> for f32x8
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<f64x4> for i32x8
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<u8x32> for f64x4
[src]

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

Safe lossless bitwise from T to Self.

impl RemAssign<f64x4> for f64x4
[src]

Performs the %= operation.

impl MulAssign<f64x4> for f64x4
[src]

Performs the *= operation.

impl AddAssign<f64x4> for f64x4
[src]

Performs the += operation.

impl Neg for f64x4
[src]

The resulting type after applying the - operator.

Performs the unary - operation.

impl Default for f64x4
[src]

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

impl Clone for f64x4
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialOrd<f64x4> for f64x4
[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 Sub<f64x4> for f64x4
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl Rem<f64x4> for f64x4
[src]

The resulting type after applying the % operator.

Performs the % operation.

Auto Trait Implementations

impl Send for f64x4

impl Sync for f64x4