pub trait SimdTransmuteF64: Sized {
    // Provided methods
    fn try_transmute_scalar(&self) -> f64 { ... }
    fn try_transmute_from_scalar(_scalar: f64) -> Self { ... }
    fn try_transmute_sse2(&self) -> __m128d { ... }
    fn try_transmute_from_sse2(_sse2: __m128d) -> Self { ... }
    fn try_transmute_sse41(&self) -> __m128d { ... }
    fn try_transmute_from_sse41(_sse41: __m128d) -> Self { ... }
    fn try_transmute_avx2(&self) -> __m256d { ... }
    fn try_transmute_from_avx2(_avx2: __m256d) -> Self { ... }
}

Provided Methods§

source

fn try_transmute_scalar(&self) -> f64

Tries to transmute the value into its underlying scalar type. Panics if the value is not a scalar.

source

fn try_transmute_from_scalar(_scalar: f64) -> Self

Tries to create the value from its underlying scalar type. Panics if the value is not a scalar.

source

fn try_transmute_sse2(&self) -> __m128d

Tries to transmute the value into its underlying Sse2 type. Panics if the value is not a Sse2.

source

fn try_transmute_from_sse2(_sse2: __m128d) -> Self

Tries to create the value from its underlying Sse2 type. Panics if the value is not a Sse2.

source

fn try_transmute_sse41(&self) -> __m128d

Tries to transmute the value into its underlying Sse4.1 type. Panics if the value is not a Sse4.1.

source

fn try_transmute_from_sse41(_sse41: __m128d) -> Self

Tries to create the value from its underlying Sse4.1 type. Panics if the value is not a Sse4.1.

source

fn try_transmute_avx2(&self) -> __m256d

Tries to transmute the value into its underlying Avx2 type. Panics if the value is not a Avx2.

source

fn try_transmute_from_avx2(_avx2: __m256d) -> Self

Tries to create the value from its underlying Avx2 type. Panics if the value is not a Avx2.

Implementors§