Struct std::simd::i32x4
[−]
[src]
#[repr(simd)]pub struct i32x4(_, _, _, _);
A 128-bit vector with 4 i32 lanes.
Methods
impl i32x4[src]
impl i32x4pub const fn new(x0: i32, x1: i32, x2: i32, x3: i32) -> i32x4[src]
pub const fn new(x0: i32, x1: i32, x2: i32, x3: i32) -> i32x4Creates a new instance with each vector elements initialized with the provided values.
pub const fn lanes() -> usize[src]
pub const fn lanes() -> usizeReturns the number of vector lanes.
pub const fn splat(value: i32) -> i32x4[src]
pub const fn splat(value: i32) -> i32x4Constructs a new instance with each element initialized to
value.
pub fn extract(self, index: usize) -> i32[src]
pub fn extract(self, index: usize) -> i32pub unsafe fn extract_unchecked(self, index: usize) -> i32[src]
pub unsafe fn extract_unchecked(self, index: usize) -> i32Extracts the value at index.
If index >= Self::lanes() the behavior is undefined.
pub fn replace(self, index: usize, new_value: i32) -> i32x4[src]
pub fn replace(self, index: usize, new_value: i32) -> i32x4Returns a new vector where the value at index is replaced by new_value.
Panics
If index >= Self::lanes().
pub unsafe fn replace_unchecked(self, index: usize, new_value: i32) -> i32x4[src]
pub unsafe fn replace_unchecked(self, index: usize, new_value: i32) -> i32x4Returns a new vector where the value at index is replaced by new_value.
Panics
If index >= Self::lanes().
impl i32x4[src]
impl i32x4pub fn store_aligned(self, slice: &mut [i32])[src]
pub fn store_aligned(self, slice: &mut [i32])Writes the values of the vector to the slice.
Panics
If slice.len() < Self::lanes() or &slice[0] is not
aligned to an align_of::<Self>() boundary.
pub fn store_unaligned(self, slice: &mut [i32])[src]
pub fn store_unaligned(self, slice: &mut [i32])pub unsafe fn store_aligned_unchecked(self, slice: &mut [i32])[src]
pub unsafe fn store_aligned_unchecked(self, slice: &mut [i32])Writes the values of the vector to the slice.
Precondition
If slice.len() < Self::lanes() or &slice[0] is not
aligned to an align_of::<Self>() boundary, the behavior is
undefined.
pub unsafe fn store_unaligned_unchecked(self, slice: &mut [i32])[src]
pub unsafe fn store_unaligned_unchecked(self, slice: &mut [i32])Writes the values of the vector to the slice.
Precondition
If slice.len() < Self::lanes() the behavior is undefined.
pub fn load_aligned(slice: &[i32]) -> i32x4[src]
pub fn load_aligned(slice: &[i32]) -> i32x4Instantiates a new vector with the values of the slice.
Panics
If slice.len() < Self::lanes() or &slice[0] is not aligned
to an align_of::<Self>() boundary.
pub fn load_unaligned(slice: &[i32]) -> i32x4[src]
pub fn load_unaligned(slice: &[i32]) -> i32x4pub unsafe fn load_aligned_unchecked(slice: &[i32]) -> i32x4[src]
pub unsafe fn load_aligned_unchecked(slice: &[i32]) -> i32x4Instantiates a new vector with the values of the slice.
Precondition
If slice.len() < Self::lanes() or &slice[0] is not aligned
to an align_of::<Self>() boundary, the behavior is undefined.
pub unsafe fn load_unaligned_unchecked(slice: &[i32]) -> i32x4[src]
pub unsafe fn load_unaligned_unchecked(slice: &[i32]) -> i32x4Instantiates a new vector with the values of the slice.
Precondition
If slice.len() < Self::lanes() the behavior is undefined.
impl i32x4[src]
impl i32x4pub fn eq(self, other: i32x4) -> b8x4[src]
pub fn eq(self, other: i32x4) -> b8x4Lane-wise equality comparison.
pub fn ne(self, other: i32x4) -> b8x4[src]
pub fn ne(self, other: i32x4) -> b8x4Lane-wise inequality comparison.
pub fn lt(self, other: i32x4) -> b8x4[src]
pub fn lt(self, other: i32x4) -> b8x4Lane-wise less-than comparison.
pub fn le(self, other: i32x4) -> b8x4[src]
pub fn le(self, other: i32x4) -> b8x4Lane-wise less-than-or-equals comparison.
pub fn gt(self, other: i32x4) -> b8x4[src]
pub fn gt(self, other: i32x4) -> b8x4Lane-wise greater-than comparison.
pub fn ge(self, other: i32x4) -> b8x4[src]
pub fn ge(self, other: i32x4) -> b8x4Lane-wise greater-than-or-equals comparison.
impl i32x4[src]
impl i32x4pub fn sum(self) -> i32[src]
pub fn sum(self) -> i32Lane-wise addition of the vector elements.
pub fn product(self) -> i32[src]
pub fn product(self) -> i32Lane-wise multiplication of the vector elements.
impl i32x4[src]
impl i32x4pub fn max(self) -> i32[src]
pub fn max(self) -> i32Largest vector value.
pub fn min(self) -> i32[src]
pub fn min(self) -> i32Smallest vector value.
impl i32x4[src]
impl i32x4pub fn and(self) -> i32[src]
pub fn and(self) -> i32Lane-wise bitwise and of the vector elements.
pub fn or(self) -> i32[src]
pub fn or(self) -> i32Lane-wise bitwise or of the vector elements.
pub fn xor(self) -> i32[src]
pub fn xor(self) -> i32Lane-wise bitwise xor of the vector elements.
Trait Implementations
impl Shl<usize> for i32x4[src]
impl Shl<usize> for i32x4type Output = i32x4
The resulting type after applying the << operator.
fn shl(self, other: usize) -> i32x4[src]
fn shl(self, other: usize) -> i32x4Performs the << operation.
impl Shl<i64> for i32x4[src]
impl Shl<i64> for i32x4type Output = i32x4
The resulting type after applying the << operator.
fn shl(self, other: i64) -> i32x4[src]
fn shl(self, other: i64) -> i32x4Performs the << operation.
impl Shl<u8> for i32x4[src]
impl Shl<u8> for i32x4type Output = i32x4
The resulting type after applying the << operator.
fn shl(self, other: u8) -> i32x4[src]
fn shl(self, other: u8) -> i32x4Performs the << operation.
impl Shl<i8> for i32x4[src]
impl Shl<i8> for i32x4type Output = i32x4
The resulting type after applying the << operator.
fn shl(self, other: i8) -> i32x4[src]
fn shl(self, other: i8) -> i32x4Performs the << operation.
impl Shl<u32> for i32x4[src]
impl Shl<u32> for i32x4type Output = i32x4
The resulting type after applying the << operator.
fn shl(self, other: u32) -> i32x4[src]
fn shl(self, other: u32) -> i32x4Performs the << operation.
impl Shl<u64> for i32x4[src]
impl Shl<u64> for i32x4type Output = i32x4
The resulting type after applying the << operator.
fn shl(self, other: u64) -> i32x4[src]
fn shl(self, other: u64) -> i32x4Performs the << operation.
impl Shl<i16> for i32x4[src]
impl Shl<i16> for i32x4type Output = i32x4
The resulting type after applying the << operator.
fn shl(self, other: i16) -> i32x4[src]
fn shl(self, other: i16) -> i32x4Performs the << operation.
impl Shl<u16> for i32x4[src]
impl Shl<u16> for i32x4type Output = i32x4
The resulting type after applying the << operator.
fn shl(self, other: u16) -> i32x4[src]
fn shl(self, other: u16) -> i32x4Performs the << operation.
impl Shl<i32> for i32x4[src]
impl Shl<i32> for i32x4type Output = i32x4
The resulting type after applying the << operator.
fn shl(self, other: i32) -> i32x4[src]
fn shl(self, other: i32) -> i32x4Performs the << operation.
impl Shl<isize> for i32x4[src]
impl Shl<isize> for i32x4type Output = i32x4
The resulting type after applying the << operator.
fn shl(self, other: isize) -> i32x4[src]
fn shl(self, other: isize) -> i32x4Performs the << operation.
impl From<i32x4> for f64x4[src]
impl From<i32x4> for f64x4impl From<u16x4> for i32x4[src]
impl From<u16x4> for i32x4impl From<i32x4> for i8x4[src]
impl From<i32x4> for i8x4impl From<i32x4> for i64x4[src]
impl From<i32x4> for i64x4impl From<i8x4> for i32x4[src]
impl From<i8x4> for i32x4impl From<i32x4> for f32x4[src]
impl From<i32x4> for f32x4impl From<f64x4> for i32x4[src]
impl From<f64x4> for i32x4impl From<i64x4> for i32x4[src]
impl From<i64x4> for i32x4impl From<u32x4> for i32x4[src]
impl From<u32x4> for i32x4impl From<i16x4> for i32x4[src]
impl From<i16x4> for i32x4impl From<i32x4> for u16x4[src]
impl From<i32x4> for u16x4impl From<i32x4> for u32x4[src]
impl From<i32x4> for u32x4impl From<i32x4> for i16x4[src]
impl From<i32x4> for i16x4impl From<f32x4> for i32x4[src]
impl From<f32x4> for i32x4impl From<u64x4> for i32x4[src]
impl From<u64x4> for i32x4impl From<i32x4> for u8x4[src]
impl From<i32x4> for u8x4impl From<i32x4> for u64x4[src]
impl From<i32x4> for u64x4impl From<u8x4> for i32x4[src]
impl From<u8x4> for i32x4impl PartialEq<i32x4> for i32x4[src]
impl PartialEq<i32x4> for i32x4fn eq(&self, other: &i32x4) -> bool[src]
fn eq(&self, other: &i32x4) -> boolThis method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, other: &i32x4) -> bool[src]
fn ne(&self, other: &i32x4) -> boolThis method tests for !=.
impl Sub<i32x4> for i32x4[src]
impl Sub<i32x4> for i32x4type Output = i32x4
The resulting type after applying the - operator.
fn sub(self, other: i32x4) -> i32x4[src]
fn sub(self, other: i32x4) -> i32x4Performs the - operation.
impl PartialOrd<i32x4> for i32x4[src]
impl PartialOrd<i32x4> for i32x4fn partial_cmp(&self, __arg_0: &i32x4) -> Option<Ordering>[src]
fn partial_cmp(&self, __arg_0: &i32x4) -> Option<Ordering>This method returns an ordering between self and other values if one exists. Read more
fn lt(&self, __arg_0: &i32x4) -> bool[src]
fn lt(&self, __arg_0: &i32x4) -> boolThis method tests less than (for self and other) and is used by the < operator. Read more
fn le(&self, __arg_0: &i32x4) -> bool[src]
fn le(&self, __arg_0: &i32x4) -> boolThis method tests less than or equal to (for self and other) and is used by the <= operator. Read more
fn gt(&self, __arg_0: &i32x4) -> bool[src]
fn gt(&self, __arg_0: &i32x4) -> boolThis method tests greater than (for self and other) and is used by the > operator. Read more
fn ge(&self, __arg_0: &i32x4) -> bool[src]
fn ge(&self, __arg_0: &i32x4) -> boolThis method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
impl Default for i32x4[src]
impl Default for i32x4impl Neg for i32x4[src]
impl Neg for i32x4type Output = i32x4
The resulting type after applying the - operator.
fn neg(self) -> i32x4[src]
fn neg(self) -> i32x4Performs the unary - operation.
impl SubAssign<i32x4> for i32x4[src]
impl SubAssign<i32x4> for i32x4fn sub_assign(&mut self, other: i32x4)[src]
fn sub_assign(&mut self, other: i32x4)Performs the -= operation.
impl RemAssign<i32x4> for i32x4[src]
impl RemAssign<i32x4> for i32x4fn rem_assign(&mut self, other: i32x4)[src]
fn rem_assign(&mut self, other: i32x4)Performs the %= operation.
impl Div<i32x4> for i32x4[src]
impl Div<i32x4> for i32x4type Output = i32x4
The resulting type after applying the / operator.
fn div(self, other: i32x4) -> i32x4[src]
fn div(self, other: i32x4) -> i32x4Performs the / operation.
impl BitXorAssign<i32x4> for i32x4[src]
impl BitXorAssign<i32x4> for i32x4fn bitxor_assign(&mut self, other: i32x4)[src]
fn bitxor_assign(&mut self, other: i32x4)Performs the ^= operation.
impl BitAnd<i32x4> for i32x4[src]
impl BitAnd<i32x4> for i32x4type Output = i32x4
The resulting type after applying the & operator.
fn bitand(self, other: i32x4) -> i32x4[src]
fn bitand(self, other: i32x4) -> i32x4Performs the & operation.
impl FromBits<i32x4> for i64x2[src]
impl FromBits<i32x4> for i64x2impl FromBits<i8x16> for i32x4[src]
impl FromBits<i8x16> for i32x4impl FromBits<u64x2> for i32x4[src]
impl FromBits<u64x2> for i32x4impl FromBits<u8x16> for i32x4[src]
impl FromBits<u8x16> for i32x4impl FromBits<i32x4> for f64x2[src]
impl FromBits<i32x4> for f64x2impl FromBits<i32x4> for u32x4[src]
impl FromBits<i32x4> for u32x4impl FromBits<i32x4> for u8x16[src]
impl FromBits<i32x4> for u8x16impl FromBits<i32x4> for i8x16[src]
impl FromBits<i32x4> for i8x16impl FromBits<i32x4> for f32x4[src]
impl FromBits<i32x4> for f32x4impl FromBits<i16x8> for i32x4[src]
impl FromBits<i16x8> for i32x4impl FromBits<i32x4> for u16x8[src]
impl FromBits<i32x4> for u16x8impl FromBits<f64x2> for i32x4[src]
impl FromBits<f64x2> for i32x4impl FromBits<u16x8> for i32x4[src]
impl FromBits<u16x8> for i32x4impl FromBits<i32x4> for i16x8[src]
impl FromBits<i32x4> for i16x8impl FromBits<u32x4> for i32x4[src]
impl FromBits<u32x4> for i32x4impl FromBits<i32x4> for u64x2[src]
impl FromBits<i32x4> for u64x2impl FromBits<i64x2> for i32x4[src]
impl FromBits<i64x2> for i32x4impl FromBits<b8x16> for i32x4[src]
impl FromBits<b8x16> for i32x4impl FromBits<f32x4> for i32x4[src]
impl FromBits<f32x4> for i32x4impl BitXor<i32x4> for i32x4[src]
impl BitXor<i32x4> for i32x4type Output = i32x4
The resulting type after applying the ^ operator.
fn bitxor(self, other: i32x4) -> i32x4[src]
fn bitxor(self, other: i32x4) -> i32x4Performs the ^ operation.
impl Shr<u8> for i32x4[src]
impl Shr<u8> for i32x4type Output = i32x4
The resulting type after applying the >> operator.
fn shr(self, other: u8) -> i32x4[src]
fn shr(self, other: u8) -> i32x4Performs the >> operation.
impl Shr<i64> for i32x4[src]
impl Shr<i64> for i32x4type Output = i32x4
The resulting type after applying the >> operator.
fn shr(self, other: i64) -> i32x4[src]
fn shr(self, other: i64) -> i32x4Performs the >> operation.
impl Shr<usize> for i32x4[src]
impl Shr<usize> for i32x4type Output = i32x4
The resulting type after applying the >> operator.
fn shr(self, other: usize) -> i32x4[src]
fn shr(self, other: usize) -> i32x4Performs the >> operation.
impl Shr<i32> for i32x4[src]
impl Shr<i32> for i32x4type Output = i32x4
The resulting type after applying the >> operator.
fn shr(self, other: i32) -> i32x4[src]
fn shr(self, other: i32) -> i32x4Performs the >> operation.
impl Shr<u64> for i32x4[src]
impl Shr<u64> for i32x4type Output = i32x4
The resulting type after applying the >> operator.
fn shr(self, other: u64) -> i32x4[src]
fn shr(self, other: u64) -> i32x4Performs the >> operation.
impl Shr<i8> for i32x4[src]
impl Shr<i8> for i32x4type Output = i32x4
The resulting type after applying the >> operator.
fn shr(self, other: i8) -> i32x4[src]
fn shr(self, other: i8) -> i32x4Performs the >> operation.
impl Shr<u16> for i32x4[src]
impl Shr<u16> for i32x4type Output = i32x4
The resulting type after applying the >> operator.
fn shr(self, other: u16) -> i32x4[src]
fn shr(self, other: u16) -> i32x4Performs the >> operation.
impl Shr<u32> for i32x4[src]
impl Shr<u32> for i32x4type Output = i32x4
The resulting type after applying the >> operator.
fn shr(self, other: u32) -> i32x4[src]
fn shr(self, other: u32) -> i32x4Performs the >> operation.
impl Shr<isize> for i32x4[src]
impl Shr<isize> for i32x4type Output = i32x4
The resulting type after applying the >> operator.
fn shr(self, other: isize) -> i32x4[src]
fn shr(self, other: isize) -> i32x4Performs the >> operation.
impl Shr<i16> for i32x4[src]
impl Shr<i16> for i32x4type Output = i32x4
The resulting type after applying the >> operator.
fn shr(self, other: i16) -> i32x4[src]
fn shr(self, other: i16) -> i32x4Performs the >> operation.
impl ShrAssign<usize> for i32x4[src]
impl ShrAssign<usize> for i32x4fn shr_assign(&mut self, other: usize)[src]
fn shr_assign(&mut self, other: usize)Performs the >>= operation.
impl ShrAssign<i8> for i32x4[src]
impl ShrAssign<i8> for i32x4fn shr_assign(&mut self, other: i8)[src]
fn shr_assign(&mut self, other: i8)Performs the >>= operation.
impl ShrAssign<u16> for i32x4[src]
impl ShrAssign<u16> for i32x4fn shr_assign(&mut self, other: u16)[src]
fn shr_assign(&mut self, other: u16)Performs the >>= operation.
impl ShrAssign<u64> for i32x4[src]
impl ShrAssign<u64> for i32x4fn shr_assign(&mut self, other: u64)[src]
fn shr_assign(&mut self, other: u64)Performs the >>= operation.
impl ShrAssign<u8> for i32x4[src]
impl ShrAssign<u8> for i32x4fn shr_assign(&mut self, other: u8)[src]
fn shr_assign(&mut self, other: u8)Performs the >>= operation.
impl ShrAssign<isize> for i32x4[src]
impl ShrAssign<isize> for i32x4fn shr_assign(&mut self, other: isize)[src]
fn shr_assign(&mut self, other: isize)Performs the >>= operation.
impl ShrAssign<i64> for i32x4[src]
impl ShrAssign<i64> for i32x4fn shr_assign(&mut self, other: i64)[src]
fn shr_assign(&mut self, other: i64)Performs the >>= operation.
impl ShrAssign<i16> for i32x4[src]
impl ShrAssign<i16> for i32x4fn shr_assign(&mut self, other: i16)[src]
fn shr_assign(&mut self, other: i16)Performs the >>= operation.
impl ShrAssign<u32> for i32x4[src]
impl ShrAssign<u32> for i32x4fn shr_assign(&mut self, other: u32)[src]
fn shr_assign(&mut self, other: u32)Performs the >>= operation.
impl ShrAssign<i32> for i32x4[src]
impl ShrAssign<i32> for i32x4fn shr_assign(&mut self, other: i32)[src]
fn shr_assign(&mut self, other: i32)Performs the >>= operation.
impl AddAssign<i32x4> for i32x4[src]
impl AddAssign<i32x4> for i32x4fn add_assign(&mut self, other: i32x4)[src]
fn add_assign(&mut self, other: i32x4)Performs the += operation.
impl DivAssign<i32x4> for i32x4[src]
impl DivAssign<i32x4> for i32x4fn div_assign(&mut self, other: i32x4)[src]
fn div_assign(&mut self, other: i32x4)Performs the /= operation.
impl Add<i32x4> for i32x4[src]
impl Add<i32x4> for i32x4type Output = i32x4
The resulting type after applying the + operator.
fn add(self, other: i32x4) -> i32x4[src]
fn add(self, other: i32x4) -> i32x4Performs the + operation.
impl Debug for i32x4[src]
impl Debug for i32x4fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter. Read more
impl BitOrAssign<i32x4> for i32x4[src]
impl BitOrAssign<i32x4> for i32x4fn bitor_assign(&mut self, other: i32x4)[src]
fn bitor_assign(&mut self, other: i32x4)Performs the |= operation.
impl Copy for i32x4[src]
impl Copy for i32x4impl Mul<i32x4> for i32x4[src]
impl Mul<i32x4> for i32x4type Output = i32x4
The resulting type after applying the * operator.
fn mul(self, other: i32x4) -> i32x4[src]
fn mul(self, other: i32x4) -> i32x4Performs the * operation.
impl LowerHex for i32x4[src]
impl LowerHex for i32x4fn fmt(&self, f: &mut Formatter) -> Result<(), Error>[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>Formats the value using the given formatter.
impl Rem<i32x4> for i32x4[src]
impl Rem<i32x4> for i32x4type Output = i32x4
The resulting type after applying the % operator.
fn rem(self, other: i32x4) -> i32x4[src]
fn rem(self, other: i32x4) -> i32x4Performs the % operation.
impl Not for i32x4[src]
impl Not for i32x4type Output = i32x4
The resulting type after applying the ! operator.
fn not(self) -> i32x4[src]
fn not(self) -> i32x4Performs the unary ! operation.
impl Hash for i32x4[src]
impl Hash for i32x4fn hash<H>(&self, state: &mut H) where
H: Hasher, [src]
fn hash<H>(&self, state: &mut H) where
H: Hasher, Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, Feeds a slice of this type into the given [Hasher]. Read more
impl Eq for i32x4[src]
impl Eq for i32x4impl Clone for i32x4[src]
impl Clone for i32x4fn clone(&self) -> i32x4[src]
fn clone(&self) -> i32x4Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl MulAssign<i32x4> for i32x4[src]
impl MulAssign<i32x4> for i32x4fn mul_assign(&mut self, other: i32x4)[src]
fn mul_assign(&mut self, other: i32x4)Performs the *= operation.
impl BitOr<i32x4> for i32x4[src]
impl BitOr<i32x4> for i32x4type Output = i32x4
The resulting type after applying the | operator.
fn bitor(self, other: i32x4) -> i32x4[src]
fn bitor(self, other: i32x4) -> i32x4Performs the | operation.
impl BitAndAssign<i32x4> for i32x4[src]
impl BitAndAssign<i32x4> for i32x4fn bitand_assign(&mut self, other: i32x4)[src]
fn bitand_assign(&mut self, other: i32x4)Performs the &= operation.
impl ShlAssign<i16> for i32x4[src]
impl ShlAssign<i16> for i32x4fn shl_assign(&mut self, other: i16)[src]
fn shl_assign(&mut self, other: i16)Performs the <<= operation.
impl ShlAssign<i64> for i32x4[src]
impl ShlAssign<i64> for i32x4fn shl_assign(&mut self, other: i64)[src]
fn shl_assign(&mut self, other: i64)Performs the <<= operation.
impl ShlAssign<usize> for i32x4[src]
impl ShlAssign<usize> for i32x4fn shl_assign(&mut self, other: usize)[src]
fn shl_assign(&mut self, other: usize)Performs the <<= operation.
impl ShlAssign<u16> for i32x4[src]
impl ShlAssign<u16> for i32x4fn shl_assign(&mut self, other: u16)[src]
fn shl_assign(&mut self, other: u16)Performs the <<= operation.
impl ShlAssign<u32> for i32x4[src]
impl ShlAssign<u32> for i32x4fn shl_assign(&mut self, other: u32)[src]
fn shl_assign(&mut self, other: u32)Performs the <<= operation.
impl ShlAssign<isize> for i32x4[src]
impl ShlAssign<isize> for i32x4fn shl_assign(&mut self, other: isize)[src]
fn shl_assign(&mut self, other: isize)Performs the <<= operation.
impl ShlAssign<u64> for i32x4[src]
impl ShlAssign<u64> for i32x4fn shl_assign(&mut self, other: u64)[src]
fn shl_assign(&mut self, other: u64)Performs the <<= operation.
impl ShlAssign<i8> for i32x4[src]
impl ShlAssign<i8> for i32x4fn shl_assign(&mut self, other: i8)[src]
fn shl_assign(&mut self, other: i8)Performs the <<= operation.
impl ShlAssign<u8> for i32x4[src]
impl ShlAssign<u8> for i32x4fn shl_assign(&mut self, other: u8)[src]
fn shl_assign(&mut self, other: u8)Performs the <<= operation.
impl ShlAssign<i32> for i32x4[src]
impl ShlAssign<i32> for i32x4fn shl_assign(&mut self, other: i32)[src]
fn shl_assign(&mut self, other: i32)Performs the <<= operation.