pub struct f32x16(pub [f32; 16]);
Expand description
Multi-Data correspondence of the native type
Tuple Fields§
§0: [f32; 16]
Trait Implementations§
source§impl NativeSimd for f32x16
impl NativeSimd for f32x16
source§fn from_chunk(v: &[f32]) -> Self
fn from_chunk(v: &[f32]) -> Self
Convert itself from a slice. Read more
source§fn from_incomplete_chunk(v: &[f32], remaining: f32) -> Self
fn from_incomplete_chunk(v: &[f32], remaining: f32) -> Self
creates a new Self from
v
by populating items from v
up to its length.
Items from v
at positions larger than the number of lanes are ignored;
remaining items are populated with remaining
.impl Copy for f32x16
Auto Trait Implementations§
impl Freeze for f32x16
impl RefUnwindSafe for f32x16
impl Send for f32x16
impl Sync for f32x16
impl Unpin for f32x16
impl UnwindSafe for f32x16
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