#[repr(simd)]pub struct vector_double([f64; 2]);
🔬This is a nightly-only experimental API. (
stdarch_powerpc
#111145)Available on PowerPC or PowerPC-64 only.
Expand description
PowerPC-specific 128-bit wide vector of two packed f64
Tuple Fields§
§0: [f64; 2]
🔬This is a nightly-only experimental API. (
stdarch_powerpc
#111145)Implementations§
Source§impl vector_double
impl vector_double
Sourcefn splat(value: f64) -> vector_double
fn splat(value: f64) -> vector_double
Using my_simd([x; N])
seemingly fails tests,
so use this internal helper for it instead.
Sourceconst fn as_array(&self) -> &[f64; 2]
const fn as_array(&self) -> &[f64; 2]
Returns an array reference containing the entire SIMD vector.
Sourcefn as_mut_array(&mut self) -> &mut [f64; 2]
fn as_mut_array(&mut self) -> &mut [f64; 2]
Returns a mutable array reference containing the entire SIMD vector.
Trait Implementations§
Source§impl Clone for vector_double
impl Clone for vector_double
Source§fn clone(&self) -> vector_double
fn clone(&self) -> vector_double
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)where
Self:,
fn clone_from(&mut self, source: &Self)where
Self:,
Performs copy-assignment from
source
. Read moreSource§impl Debug for vector_double
impl Debug for vector_double
Source§impl VectorPermDI for vector_double
impl VectorPermDI for vector_double
Source§unsafe fn vec_xxpermdi(self, b: Self, dm: u8) -> Self
unsafe fn vec_xxpermdi(self, b: Self, dm: u8) -> Self
🔬This is a nightly-only experimental API. (
stdarch_powerpc
#111145)impl Copy for vector_double
Auto Trait Implementations§
impl Freeze for vector_double
impl RefUnwindSafe for vector_double
impl Send for vector_double
impl Sync for vector_double
impl Unpin for vector_double
impl UnsafeUnpin for vector_double
impl UnwindSafe for vector_double
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> SizedTypeProperties for T
impl<T> SizedTypeProperties for T
Source§#[doc(hidden)] const IS_ZST: bool = _
#[doc(hidden)] const IS_ZST: bool = _
🔬This is a nightly-only experimental API. (
sized_type_properties
)Source§#[doc(hidden)] const LAYOUT: Layout = _
#[doc(hidden)] const LAYOUT: Layout = _
🔬This is a nightly-only experimental API. (
sized_type_properties
)Source§#[doc(hidden)] const MAX_SLICE_LEN: usize = _
#[doc(hidden)] const MAX_SLICE_LEN: usize = _
🔬This is a nightly-only experimental API. (
sized_type_properties
)The largest safe length for a
[Self]
. Read more