pub struct u16x32 { /* private fields */ }Implementations§
Source§impl u16x32
impl u16x32
pub const fn new(array: [u16; 32]) -> Self
pub fn simd_eq(self, rhs: Self) -> Self
pub fn simd_gt(self, rhs: Self) -> Self
pub fn simd_lt(self, rhs: Self) -> Self
pub fn blend(self, t: Self, f: Self) -> Self
pub fn min(self, rhs: Self) -> Self
pub fn max(self, rhs: Self) -> Self
pub fn saturating_add(self, rhs: Self) -> Self
pub fn saturating_sub(self, rhs: Self) -> Self
pub fn to_bitmask(self) -> u32
pub fn to_array(self) -> [u16; 32]
pub fn as_array(&self) -> &[u16; 32]
pub fn as_mut_array(&mut self) -> &mut [u16; 32]
Trait Implementations§
Source§impl AddAssign<&u16x32> for u16x32
impl AddAssign<&u16x32> for u16x32
Source§fn add_assign(&mut self, rhs: &Self)
fn add_assign(&mut self, rhs: &Self)
Performs the
+= operation. Read moreSource§impl AddAssign for u16x32
impl AddAssign for u16x32
Source§fn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the
+= operation. Read moreSource§impl BitAndAssign<&u16x32> for u16x32
impl BitAndAssign<&u16x32> for u16x32
Source§fn bitand_assign(&mut self, rhs: &Self)
fn bitand_assign(&mut self, rhs: &Self)
Performs the
&= operation. Read moreSource§impl BitAndAssign for u16x32
impl BitAndAssign for u16x32
Source§fn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the
&= operation. Read moreSource§impl BitOrAssign<&u16x32> for u16x32
impl BitOrAssign<&u16x32> for u16x32
Source§fn bitor_assign(&mut self, rhs: &Self)
fn bitor_assign(&mut self, rhs: &Self)
Performs the
|= operation. Read moreSource§impl BitOrAssign for u16x32
impl BitOrAssign for u16x32
Source§fn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the
|= operation. Read moreSource§impl BitXorAssign<&u16x32> for u16x32
impl BitXorAssign<&u16x32> for u16x32
Source§fn bitxor_assign(&mut self, rhs: &Self)
fn bitxor_assign(&mut self, rhs: &Self)
Performs the
^= operation. Read moreSource§impl BitXorAssign for u16x32
impl BitXorAssign for u16x32
Source§fn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the
^= operation. Read moreSource§impl MulAssign<&u16x32> for u16x32
impl MulAssign<&u16x32> for u16x32
Source§fn mul_assign(&mut self, rhs: &Self)
fn mul_assign(&mut self, rhs: &Self)
Performs the
*= operation. Read moreSource§impl MulAssign for u16x32
impl MulAssign for u16x32
Source§fn mul_assign(&mut self, rhs: Self)
fn mul_assign(&mut self, rhs: Self)
Performs the
*= operation. Read moreSource§impl SubAssign<&u16x32> for u16x32
impl SubAssign<&u16x32> for u16x32
Source§fn sub_assign(&mut self, rhs: &Self)
fn sub_assign(&mut self, rhs: &Self)
Performs the
-= operation. Read moreSource§impl SubAssign for u16x32
impl SubAssign for u16x32
Source§fn sub_assign(&mut self, rhs: Self)
fn sub_assign(&mut self, rhs: Self)
Performs the
-= operation. Read moreimpl Copy for u16x32
impl Eq for u16x32
impl Pod for u16x32
impl StructuralPartialEq for u16x32
Auto Trait Implementations§
impl Freeze for u16x32
impl RefUnwindSafe for u16x32
impl Send for u16x32
impl Sync for u16x32
impl Unpin for u16x32
impl UnwindSafe for u16x32
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> CheckedBitPattern for Twhere
T: AnyBitPattern,
impl<T> CheckedBitPattern for Twhere
T: AnyBitPattern,
Source§type Bits = T
type Bits = T
Self must have the same layout as the specified Bits except for
the possible invalid bit patterns being checked during
is_valid_bit_pattern.Source§fn is_valid_bit_pattern(_bits: &T) -> bool
fn is_valid_bit_pattern(_bits: &T) -> bool
If this function returns true, then it must be valid to reinterpret
bits
as &Self.