#[repr(transparent)]pub struct u32x8(__m256i);Tuple Fields§
§0: __m256iImplementations§
Source§impl u32x8
impl u32x8
Sourcepub const fn new_const(
x0: u32,
x1: u32,
x2: u32,
x3: u32,
x4: u32,
x5: u32,
x6: u32,
x7: u32,
) -> Self
pub const fn new_const( x0: u32, x1: u32, x2: u32, x3: u32, x4: u32, x5: u32, x6: u32, x7: u32, ) -> Self
A constified variant of new.
Should only be called from const contexts. At runtime new is going to be faster.
Sourcepub const fn splat_const<const N: u32>() -> Self
pub const fn splat_const<const N: u32>() -> Self
A constified variant of splat.
Should only be called from const contexts. At runtime splat is going to be faster.
Trait Implementations§
Source§impl AddAssign for u32x8
impl AddAssign for u32x8
Source§fn add_assign(&mut self, rhs: u32x8)
fn add_assign(&mut self, rhs: u32x8)
Performs the
+= operation. Read moreSource§impl BitAndAssign for u32x8
impl BitAndAssign for u32x8
Source§fn bitand_assign(&mut self, rhs: u32x8)
fn bitand_assign(&mut self, rhs: u32x8)
Performs the
&= operation. Read moreSource§impl BitXorAssign for u32x8
impl BitXorAssign for u32x8
Source§fn bitxor_assign(&mut self, rhs: u32x8)
fn bitxor_assign(&mut self, rhs: u32x8)
Performs the
^= operation. Read moreimpl Copy for u32x8
impl Eq for u32x8
Auto Trait Implementations§
impl Freeze for u32x8
impl RefUnwindSafe for u32x8
impl Send for u32x8
impl Sync for u32x8
impl Unpin for u32x8
impl UnwindSafe for u32x8
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