Struct std::simd::i8x64 [−][src]
#[repr(simd)]pub struct i8x64(_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _);
A 512-bit vector with 64 i8
lanes.
Methods
impl i8x64
[src]
impl i8x64
pub const fn new(
x0: i8,
x1: i8,
x2: i8,
x3: i8,
x4: i8,
x5: i8,
x6: i8,
x7: i8,
x8: i8,
x9: i8,
x10: i8,
x11: i8,
x12: i8,
x13: i8,
x14: i8,
x15: i8,
x16: i8,
x17: i8,
x18: i8,
x19: i8,
x20: i8,
x21: i8,
x22: i8,
x23: i8,
x24: i8,
x25: i8,
x26: i8,
x27: i8,
x28: i8,
x29: i8,
x30: i8,
x31: i8,
x32: i8,
x33: i8,
x34: i8,
x35: i8,
x36: i8,
x37: i8,
x38: i8,
x39: i8,
x40: i8,
x41: i8,
x42: i8,
x43: i8,
x44: i8,
x45: i8,
x46: i8,
x47: i8,
x48: i8,
x49: i8,
x50: i8,
x51: i8,
x52: i8,
x53: i8,
x54: i8,
x55: i8,
x56: i8,
x57: i8,
x58: i8,
x59: i8,
x60: i8,
x61: i8,
x62: i8,
x63: i8
) -> i8x64
[src]
pub const fn new(
x0: i8,
x1: i8,
x2: i8,
x3: i8,
x4: i8,
x5: i8,
x6: i8,
x7: i8,
x8: i8,
x9: i8,
x10: i8,
x11: i8,
x12: i8,
x13: i8,
x14: i8,
x15: i8,
x16: i8,
x17: i8,
x18: i8,
x19: i8,
x20: i8,
x21: i8,
x22: i8,
x23: i8,
x24: i8,
x25: i8,
x26: i8,
x27: i8,
x28: i8,
x29: i8,
x30: i8,
x31: i8,
x32: i8,
x33: i8,
x34: i8,
x35: i8,
x36: i8,
x37: i8,
x38: i8,
x39: i8,
x40: i8,
x41: i8,
x42: i8,
x43: i8,
x44: i8,
x45: i8,
x46: i8,
x47: i8,
x48: i8,
x49: i8,
x50: i8,
x51: i8,
x52: i8,
x53: i8,
x54: i8,
x55: i8,
x56: i8,
x57: i8,
x58: i8,
x59: i8,
x60: i8,
x61: i8,
x62: i8,
x63: i8
) -> i8x64
Creates a new instance with each vector elements initialized with the provided values.
pub const fn lanes() -> usize
[src]
pub const fn lanes() -> usize
Returns the number of vector lanes.
pub const fn splat(value: i8) -> i8x64
[src]
pub const fn splat(value: i8) -> i8x64
Constructs a new instance with each element initialized to
value
.
pub fn extract(self, index: usize) -> i8
[src]
pub fn extract(self, index: usize) -> i8
pub unsafe fn extract_unchecked(self, index: usize) -> i8
[src]
pub unsafe fn extract_unchecked(self, index: usize) -> i8
#[must_use = "replace does not modify the original value - it returns a new vector with the value at `index` replaced by `new_value`d"]
pub fn replace(self, index: usize, new_value: i8) -> i8x64
[src]
#[must_use = "replace does not modify the original value - it returns a new vector with the value at `index` replaced by `new_value`d"]
pub fn replace(self, index: usize, new_value: i8) -> i8x64
Returns a new vector where the value at index
is replaced by new_value
.
Panics
If index >= Self::lanes()
.
#[must_use = "replace_unchecked does not modify the original value - it returns a new vector with the value at `index` replaced by `new_value`d"]
pub unsafe fn replace_unchecked(self, index: usize, new_value: i8) -> i8x64
[src]
#[must_use = "replace_unchecked does not modify the original value - it returns a new vector with the value at `index` replaced by `new_value`d"]
pub unsafe fn replace_unchecked(self, index: usize, new_value: i8) -> i8x64
Returns a new vector where the value at index
is replaced by new_value
.
Precondition
If index >= Self::lanes()
the behavior is undefined.
impl i8x64
[src]
impl i8x64
pub fn store_aligned(self, slice: &mut [i8])
[src]
pub fn store_aligned(self, slice: &mut [i8])
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 [i8])
[src]
pub fn store_unaligned(self, slice: &mut [i8])
pub unsafe fn store_aligned_unchecked(self, slice: &mut [i8])
[src]
pub unsafe fn store_aligned_unchecked(self, slice: &mut [i8])
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 [i8])
[src]
pub unsafe fn store_unaligned_unchecked(self, slice: &mut [i8])
Writes the values of the vector to the slice
.
Precondition
If slice.len() < Self::lanes()
the behavior is undefined.
pub fn load_aligned(slice: &[i8]) -> i8x64
[src]
pub fn load_aligned(slice: &[i8]) -> i8x64
Instantiates 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: &[i8]) -> i8x64
[src]
pub fn load_unaligned(slice: &[i8]) -> i8x64
pub unsafe fn load_aligned_unchecked(slice: &[i8]) -> i8x64
[src]
pub unsafe fn load_aligned_unchecked(slice: &[i8]) -> i8x64
Instantiates 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: &[i8]) -> i8x64
[src]
pub unsafe fn load_unaligned_unchecked(slice: &[i8]) -> i8x64
Instantiates a new vector with the values of the slice
.
Precondition
If slice.len() < Self::lanes()
the behavior is undefined.
impl i8x64
[src]
impl i8x64
pub fn eq(self, other: i8x64) -> m1x64
[src]
pub fn eq(self, other: i8x64) -> m1x64
Lane-wise equality comparison.
pub fn ne(self, other: i8x64) -> m1x64
[src]
pub fn ne(self, other: i8x64) -> m1x64
Lane-wise inequality comparison.
pub fn lt(self, other: i8x64) -> m1x64
[src]
pub fn lt(self, other: i8x64) -> m1x64
Lane-wise less-than comparison.
pub fn le(self, other: i8x64) -> m1x64
[src]
pub fn le(self, other: i8x64) -> m1x64
Lane-wise less-than-or-equals comparison.
pub fn gt(self, other: i8x64) -> m1x64
[src]
pub fn gt(self, other: i8x64) -> m1x64
Lane-wise greater-than comparison.
pub fn ge(self, other: i8x64) -> m1x64
[src]
pub fn ge(self, other: i8x64) -> m1x64
Lane-wise greater-than-or-equals comparison.
impl i8x64
[src]
impl i8x64
pub fn wrapping_sum(self) -> i8
[src]
pub fn wrapping_sum(self) -> i8
Horizontal sum of the vector elements.
The intrinsic performs a tree-reduction of the vector elements. That is, for an 8 element vector:
((x0 + x1) + (x2 + x3)) + ((x4 + x5) + (x6 + x7))
Integer vectors
If an operation overflows it returns the mathematical result
modulo 2^n
where n
is the number of times it overflows.
Floating-point vectors
If one of the vector element is NaN
the reduction returns
NaN
.
pub fn wrapping_product(self) -> i8
[src]
pub fn wrapping_product(self) -> i8
Horizontal product of the vector elements.
The intrinsic performs a tree-reduction of the vector elements. That is, for an 8 element vector:
((x0 * x1) * (x2 * x3)) * ((x4 * x5) * (x6 * x7))
Integer vectors
If an operation overflows it returns the mathematical result
modulo 2^n
where n
is the number of times it overflows.
Floating-point vectors
If one of the vector element is NaN
the reduction returns
NaN
.
impl i8x64
[src]
impl i8x64
pub fn max_element(self) -> i8
[src]
pub fn max_element(self) -> i8
Largest vector element value.
pub fn min_element(self) -> i8
[src]
pub fn min_element(self) -> i8
Smallest vector element value.
impl i8x64
[src]
impl i8x64
pub fn and(self) -> i8
[src]
pub fn and(self) -> i8
Lane-wise bitwise and
of the vector elements.
pub fn or(self) -> i8
[src]
pub fn or(self) -> i8
Lane-wise bitwise or
of the vector elements.
pub fn xor(self) -> i8
[src]
pub fn xor(self) -> i8
Lane-wise bitwise xor
of the vector elements.
impl i8x64
[src]
impl i8x64
pub fn min(self, x: i8x64) -> i8x64
[src]
pub fn min(self, x: i8x64) -> i8x64
Minimum of two vectors.
Returns a new vector containing the minimum value of each of the input vector lanes.
pub fn max(self, x: i8x64) -> i8x64
[src]
pub fn max(self, x: i8x64) -> i8x64
Maximum of two vectors.
Returns a new vector containing the minimum value of each of the input vector lanes.
Trait Implementations
impl Shl<u32> for i8x64
[src]
impl Shl<u32> for i8x64
type Output = i8x64
The resulting type after applying the <<
operator.
fn shl(self, other: u32) -> i8x64
[src]
fn shl(self, other: u32) -> i8x64
Performs the <<
operation.
impl Shl<i16> for i8x64
[src]
impl Shl<i16> for i8x64
type Output = i8x64
The resulting type after applying the <<
operator.
fn shl(self, other: i16) -> i8x64
[src]
fn shl(self, other: i16) -> i8x64
Performs the <<
operation.
impl Shl<i64> for i8x64
[src]
impl Shl<i64> for i8x64
type Output = i8x64
The resulting type after applying the <<
operator.
fn shl(self, other: i64) -> i8x64
[src]
fn shl(self, other: i64) -> i8x64
Performs the <<
operation.
impl Shl<u64> for i8x64
[src]
impl Shl<u64> for i8x64
type Output = i8x64
The resulting type after applying the <<
operator.
fn shl(self, other: u64) -> i8x64
[src]
fn shl(self, other: u64) -> i8x64
Performs the <<
operation.
impl Shl<i8> for i8x64
[src]
impl Shl<i8> for i8x64
type Output = i8x64
The resulting type after applying the <<
operator.
fn shl(self, other: i8) -> i8x64
[src]
fn shl(self, other: i8) -> i8x64
Performs the <<
operation.
impl Shl<u16> for i8x64
[src]
impl Shl<u16> for i8x64
type Output = i8x64
The resulting type after applying the <<
operator.
fn shl(self, other: u16) -> i8x64
[src]
fn shl(self, other: u16) -> i8x64
Performs the <<
operation.
impl Shl<isize> for i8x64
[src]
impl Shl<isize> for i8x64
type Output = i8x64
The resulting type after applying the <<
operator.
fn shl(self, other: isize) -> i8x64
[src]
fn shl(self, other: isize) -> i8x64
Performs the <<
operation.
impl Shl<u8> for i8x64
[src]
impl Shl<u8> for i8x64
type Output = i8x64
The resulting type after applying the <<
operator.
fn shl(self, other: u8) -> i8x64
[src]
fn shl(self, other: u8) -> i8x64
Performs the <<
operation.
impl Shl<i8x64> for i8x64
[src]
impl Shl<i8x64> for i8x64
type Output = i8x64
The resulting type after applying the <<
operator.
fn shl(self, other: i8x64) -> i8x64
[src]
fn shl(self, other: i8x64) -> i8x64
Performs the <<
operation.
impl Shl<usize> for i8x64
[src]
impl Shl<usize> for i8x64
type Output = i8x64
The resulting type after applying the <<
operator.
fn shl(self, other: usize) -> i8x64
[src]
fn shl(self, other: usize) -> i8x64
Performs the <<
operation.
impl Shl<i32> for i8x64
[src]
impl Shl<i32> for i8x64
type Output = i8x64
The resulting type after applying the <<
operator.
fn shl(self, other: i32) -> i8x64
[src]
fn shl(self, other: i32) -> i8x64
Performs the <<
operation.
impl BitAnd<i8x64> for i8x64
[src]
impl BitAnd<i8x64> for i8x64
type Output = i8x64
The resulting type after applying the &
operator.
fn bitand(self, other: i8x64) -> i8x64
[src]
fn bitand(self, other: i8x64) -> i8x64
Performs the &
operation.
impl BitAnd<i8> for i8x64
[src]
impl BitAnd<i8> for i8x64
type Output = i8x64
The resulting type after applying the &
operator.
fn bitand(self, other: i8) -> i8x64
[src]
fn bitand(self, other: i8) -> i8x64
Performs the &
operation.
impl BitAnd<i8x64> for i8
[src]
impl BitAnd<i8x64> for i8
type Output = i8x64
The resulting type after applying the &
operator.
fn bitand(self, other: i8x64) -> i8x64
[src]
fn bitand(self, other: i8x64) -> i8x64
Performs the &
operation.
impl Binary for i8x64
[src]
impl Binary for i8x64
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.
impl Debug for i8x64
[src]
impl Debug for i8x64
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter. Read more
impl Default for i8x64
[src]
impl Default for i8x64
impl ShlAssign<i8x64> for i8x64
[src]
impl ShlAssign<i8x64> for i8x64
fn shl_assign(&mut self, other: i8x64)
[src]
fn shl_assign(&mut self, other: i8x64)
Performs the <<=
operation.
impl ShlAssign<usize> for i8x64
[src]
impl ShlAssign<usize> for i8x64
fn shl_assign(&mut self, other: usize)
[src]
fn shl_assign(&mut self, other: usize)
Performs the <<=
operation.
impl ShlAssign<u64> for i8x64
[src]
impl ShlAssign<u64> for i8x64
fn shl_assign(&mut self, other: u64)
[src]
fn shl_assign(&mut self, other: u64)
Performs the <<=
operation.
impl ShlAssign<i64> for i8x64
[src]
impl ShlAssign<i64> for i8x64
fn shl_assign(&mut self, other: i64)
[src]
fn shl_assign(&mut self, other: i64)
Performs the <<=
operation.
impl ShlAssign<u16> for i8x64
[src]
impl ShlAssign<u16> for i8x64
fn shl_assign(&mut self, other: u16)
[src]
fn shl_assign(&mut self, other: u16)
Performs the <<=
operation.
impl ShlAssign<i16> for i8x64
[src]
impl ShlAssign<i16> for i8x64
fn shl_assign(&mut self, other: i16)
[src]
fn shl_assign(&mut self, other: i16)
Performs the <<=
operation.
impl ShlAssign<i32> for i8x64
[src]
impl ShlAssign<i32> for i8x64
fn shl_assign(&mut self, other: i32)
[src]
fn shl_assign(&mut self, other: i32)
Performs the <<=
operation.
impl ShlAssign<isize> for i8x64
[src]
impl ShlAssign<isize> for i8x64
fn shl_assign(&mut self, other: isize)
[src]
fn shl_assign(&mut self, other: isize)
Performs the <<=
operation.
impl ShlAssign<i8> for i8x64
[src]
impl ShlAssign<i8> for i8x64
fn shl_assign(&mut self, other: i8)
[src]
fn shl_assign(&mut self, other: i8)
Performs the <<=
operation.
impl ShlAssign<u8> for i8x64
[src]
impl ShlAssign<u8> for i8x64
fn shl_assign(&mut self, other: u8)
[src]
fn shl_assign(&mut self, other: u8)
Performs the <<=
operation.
impl ShlAssign<u32> for i8x64
[src]
impl ShlAssign<u32> for i8x64
fn shl_assign(&mut self, other: u32)
[src]
fn shl_assign(&mut self, other: u32)
Performs the <<=
operation.
impl Div<i8> for i8x64
[src]
impl Div<i8> for i8x64
type Output = i8x64
The resulting type after applying the /
operator.
fn div(self, other: i8) -> i8x64
[src]
fn div(self, other: i8) -> i8x64
Performs the /
operation.
impl Div<i8x64> for i8x64
[src]
impl Div<i8x64> for i8x64
type Output = i8x64
The resulting type after applying the /
operator.
fn div(self, other: i8x64) -> i8x64
[src]
fn div(self, other: i8x64) -> i8x64
Performs the /
operation.
impl Div<i8x64> for i8
[src]
impl Div<i8x64> for i8
type Output = i8x64
The resulting type after applying the /
operator.
fn div(self, other: i8x64) -> i8x64
[src]
fn div(self, other: i8x64) -> i8x64
Performs the /
operation.
impl BitXorAssign<i8> for i8x64
[src]
impl BitXorAssign<i8> for i8x64
fn bitxor_assign(&mut self, other: i8)
[src]
fn bitxor_assign(&mut self, other: i8)
Performs the ^=
operation.
impl BitXorAssign<i8x64> for i8x64
[src]
impl BitXorAssign<i8x64> for i8x64
fn bitxor_assign(&mut self, other: i8x64)
[src]
fn bitxor_assign(&mut self, other: i8x64)
Performs the ^=
operation.
impl BitOrAssign<i8x64> for i8x64
[src]
impl BitOrAssign<i8x64> for i8x64
fn bitor_assign(&mut self, other: i8x64)
[src]
fn bitor_assign(&mut self, other: i8x64)
Performs the |=
operation.
impl BitOrAssign<i8> for i8x64
[src]
impl BitOrAssign<i8> for i8x64
fn bitor_assign(&mut self, other: i8)
[src]
fn bitor_assign(&mut self, other: i8)
Performs the |=
operation.
impl BitAndAssign<i8x64> for i8x64
[src]
impl BitAndAssign<i8x64> for i8x64
fn bitand_assign(&mut self, other: i8x64)
[src]
fn bitand_assign(&mut self, other: i8x64)
Performs the &=
operation.
impl BitAndAssign<i8> for i8x64
[src]
impl BitAndAssign<i8> for i8x64
fn bitand_assign(&mut self, other: i8)
[src]
fn bitand_assign(&mut self, other: i8)
Performs the &=
operation.
impl Add<i8x64> for i8
[src]
impl Add<i8x64> for i8
type Output = i8x64
The resulting type after applying the +
operator.
fn add(self, other: i8x64) -> i8x64
[src]
fn add(self, other: i8x64) -> i8x64
Performs the +
operation.
impl Add<i8> for i8x64
[src]
impl Add<i8> for i8x64
type Output = i8x64
The resulting type after applying the +
operator.
fn add(self, other: i8) -> i8x64
[src]
fn add(self, other: i8) -> i8x64
Performs the +
operation.
impl Add<i8x64> for i8x64
[src]
impl Add<i8x64> for i8x64
type Output = i8x64
The resulting type after applying the +
operator.
fn add(self, other: i8x64) -> i8x64
[src]
fn add(self, other: i8x64) -> i8x64
Performs the +
operation.
impl BitOr<i8x64> for i8x64
[src]
impl BitOr<i8x64> for i8x64
type Output = i8x64
The resulting type after applying the |
operator.
fn bitor(self, other: i8x64) -> i8x64
[src]
fn bitor(self, other: i8x64) -> i8x64
Performs the |
operation.
impl BitOr<i8> for i8x64
[src]
impl BitOr<i8> for i8x64
type Output = i8x64
The resulting type after applying the |
operator.
fn bitor(self, other: i8) -> i8x64
[src]
fn bitor(self, other: i8) -> i8x64
Performs the |
operation.
impl BitOr<i8x64> for i8
[src]
impl BitOr<i8x64> for i8
type Output = i8x64
The resulting type after applying the |
operator.
fn bitor(self, other: i8x64) -> i8x64
[src]
fn bitor(self, other: i8x64) -> i8x64
Performs the |
operation.
impl RemAssign<i8x64> for i8x64
[src]
impl RemAssign<i8x64> for i8x64
fn rem_assign(&mut self, other: i8x64)
[src]
fn rem_assign(&mut self, other: i8x64)
Performs the %=
operation.
impl RemAssign<i8> for i8x64
[src]
impl RemAssign<i8> for i8x64
fn rem_assign(&mut self, other: i8)
[src]
fn rem_assign(&mut self, other: i8)
Performs the %=
operation.
impl Copy for i8x64
[src]
impl Copy for i8x64
impl DivAssign<i8x64> for i8x64
[src]
impl DivAssign<i8x64> for i8x64
fn div_assign(&mut self, other: i8x64)
[src]
fn div_assign(&mut self, other: i8x64)
Performs the /=
operation.
impl DivAssign<i8> for i8x64
[src]
impl DivAssign<i8> for i8x64
fn div_assign(&mut self, other: i8)
[src]
fn div_assign(&mut self, other: i8)
Performs the /=
operation.
impl MulAssign<i8> for i8x64
[src]
impl MulAssign<i8> for i8x64
fn mul_assign(&mut self, other: i8)
[src]
fn mul_assign(&mut self, other: i8)
Performs the *=
operation.
impl MulAssign<i8x64> for i8x64
[src]
impl MulAssign<i8x64> for i8x64
fn mul_assign(&mut self, other: i8x64)
[src]
fn mul_assign(&mut self, other: i8x64)
Performs the *=
operation.
impl UpperHex for i8x64
[src]
impl UpperHex for i8x64
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.
impl SubAssign<i8> for i8x64
[src]
impl SubAssign<i8> for i8x64
fn sub_assign(&mut self, other: i8)
[src]
fn sub_assign(&mut self, other: i8)
Performs the -=
operation.
impl SubAssign<i8x64> for i8x64
[src]
impl SubAssign<i8x64> for i8x64
fn sub_assign(&mut self, other: i8x64)
[src]
fn sub_assign(&mut self, other: i8x64)
Performs the -=
operation.
impl Octal for i8x64
[src]
impl Octal for i8x64
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
[src]
fn fmt(&self, f: &mut Formatter) -> Result<(), Error>
Formats the value using the given formatter.
impl From<u8x64> for i8x64
[src]
impl From<u8x64> for i8x64
impl From<m1x64> for i8x64
[src]
impl From<m1x64> for i8x64
impl From<i8x64> for u8x64
[src]
impl From<i8x64> for u8x64
impl AddAssign<i8> for i8x64
[src]
impl AddAssign<i8> for i8x64
fn add_assign(&mut self, other: i8)
[src]
fn add_assign(&mut self, other: i8)
Performs the +=
operation.
impl AddAssign<i8x64> for i8x64
[src]
impl AddAssign<i8x64> for i8x64
fn add_assign(&mut self, other: i8x64)
[src]
fn add_assign(&mut self, other: i8x64)
Performs the +=
operation.
impl Neg for i8x64
[src]
impl Neg for i8x64
type Output = i8x64
The resulting type after applying the -
operator.
fn neg(self) -> i8x64
[src]
fn neg(self) -> i8x64
Performs the unary -
operation.
impl ShrAssign<u8> for i8x64
[src]
impl ShrAssign<u8> for i8x64
fn shr_assign(&mut self, other: u8)
[src]
fn shr_assign(&mut self, other: u8)
Performs the >>=
operation.
impl ShrAssign<u64> for i8x64
[src]
impl ShrAssign<u64> for i8x64
fn shr_assign(&mut self, other: u64)
[src]
fn shr_assign(&mut self, other: u64)
Performs the >>=
operation.
impl ShrAssign<isize> for i8x64
[src]
impl ShrAssign<isize> for i8x64
fn shr_assign(&mut self, other: isize)
[src]
fn shr_assign(&mut self, other: isize)
Performs the >>=
operation.
impl ShrAssign<i32> for i8x64
[src]
impl ShrAssign<i32> for i8x64
fn shr_assign(&mut self, other: i32)
[src]
fn shr_assign(&mut self, other: i32)
Performs the >>=
operation.
impl ShrAssign<u32> for i8x64
[src]
impl ShrAssign<u32> for i8x64
fn shr_assign(&mut self, other: u32)
[src]
fn shr_assign(&mut self, other: u32)
Performs the >>=
operation.
impl ShrAssign<i16> for i8x64
[src]
impl ShrAssign<i16> for i8x64
fn shr_assign(&mut self, other: i16)
[src]
fn shr_assign(&mut self, other: i16)
Performs the >>=
operation.
impl ShrAssign<usize> for i8x64
[src]
impl ShrAssign<usize> for i8x64
fn shr_assign(&mut self, other: usize)
[src]
fn shr_assign(&mut self, other: usize)
Performs the >>=
operation.
impl ShrAssign<i8x64> for i8x64
[src]
impl ShrAssign<i8x64> for i8x64
fn shr_assign(&mut self, other: i8x64)
[src]
fn shr_assign(&mut self, other: i8x64)
Performs the >>=
operation.
impl ShrAssign<i64> for i8x64
[src]
impl ShrAssign<i64> for i8x64
fn shr_assign(&mut self, other: i64)
[src]
fn shr_assign(&mut self, other: i64)
Performs the >>=
operation.
impl ShrAssign<i8> for i8x64
[src]
impl ShrAssign<i8> for i8x64
fn shr_assign(&mut self, other: i8)
[src]
fn shr_assign(&mut self, other: i8)
Performs the >>=
operation.
impl ShrAssign<u16> for i8x64
[src]
impl ShrAssign<u16> for i8x64
fn shr_assign(&mut self, other: u16)
[src]
fn shr_assign(&mut self, other: u16)
Performs the >>=
operation.
impl Sub<i8x64> for i8
[src]
impl Sub<i8x64> for i8
type Output = i8x64
The resulting type after applying the -
operator.
fn sub(self, other: i8x64) -> i8x64
[src]
fn sub(self, other: i8x64) -> i8x64
Performs the -
operation.
impl Sub<i8x64> for i8x64
[src]
impl Sub<i8x64> for i8x64
type Output = i8x64
The resulting type after applying the -
operator.
fn sub(self, other: i8x64) -> i8x64
[src]
fn sub(self, other: i8x64) -> i8x64
Performs the -
operation.
impl Sub<i8> for i8x64
[src]
impl Sub<i8> for i8x64
type Output = i8x64
The resulting type after applying the -
operator.
fn sub(self, other: i8) -> i8x64
[src]
fn sub(self, other: i8) -> i8x64
Performs the -
operation.
impl Shr<u16> for i8x64
[src]
impl Shr<u16> for i8x64
type Output = i8x64
The resulting type after applying the >>
operator.
fn shr(self, other: u16) -> i8x64
[src]
fn shr(self, other: u16) -> i8x64
Performs the >>
operation.
impl Shr<i64> for i8x64
[src]
impl Shr<i64> for i8x64
type Output = i8x64
The resulting type after applying the >>
operator.
fn shr(self, other: i64) -> i8x64
[src]
fn shr(self, other: i64) -> i8x64
Performs the >>
operation.
impl Shr<i8> for i8x64
[src]
impl Shr<i8> for i8x64
type Output = i8x64
The resulting type after applying the >>
operator.
fn shr(self, other: i8) -> i8x64
[src]
fn shr(self, other: i8) -> i8x64
Performs the >>
operation.
impl Shr<u64> for i8x64
[src]
impl Shr<u64> for i8x64
type Output = i8x64
The resulting type after applying the >>
operator.
fn shr(self, other: u64) -> i8x64
[src]
fn shr(self, other: u64) -> i8x64
Performs the >>
operation.
impl Shr<i32> for i8x64
[src]
impl Shr<i32> for i8x64
type Output = i8x64
The resulting type after applying the >>
operator.
fn shr(self, other: i32) -> i8x64
[src]
fn shr(self, other: i32) -> i8x64
Performs the >>
operation.
impl Shr<u8> for i8x64
[src]
impl Shr<u8> for i8x64
type Output = i8x64
The resulting type after applying the >>
operator.
fn shr(self, other: u8) -> i8x64
[src]
fn shr(self, other: u8) -> i8x64
Performs the >>
operation.
impl Shr<usize> for i8x64
[src]
impl Shr<usize> for i8x64
type Output = i8x64
The resulting type after applying the >>
operator.
fn shr(self, other: usize) -> i8x64
[src]
fn shr(self, other: usize) -> i8x64
Performs the >>
operation.
impl Shr<u32> for i8x64
[src]
impl Shr<u32> for i8x64
type Output = i8x64
The resulting type after applying the >>
operator.
fn shr(self, other: u32) -> i8x64
[src]
fn shr(self, other: u32) -> i8x64
Performs the >>
operation.
impl Shr<i8x64> for i8x64
[src]
impl Shr<i8x64> for i8x64
type Output = i8x64
The resulting type after applying the >>
operator.
fn shr(self, other: i8x64) -> i8x64
[src]
fn shr(self, other: i8x64) -> i8x64
Performs the >>
operation.
impl Shr<isize> for i8x64
[src]
impl Shr<isize> for i8x64
type Output = i8x64
The resulting type after applying the >>
operator.
fn shr(self, other: isize) -> i8x64
[src]
fn shr(self, other: isize) -> i8x64
Performs the >>
operation.
impl Shr<i16> for i8x64
[src]
impl Shr<i16> for i8x64
type Output = i8x64
The resulting type after applying the >>
operator.
fn shr(self, other: i16) -> i8x64
[src]
fn shr(self, other: i16) -> i8x64
Performs the >>
operation.
impl Clone for i8x64
[src]
impl Clone for i8x64
fn clone(&self) -> i8x64
[src]
fn clone(&self) -> i8x64
Returns 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 PartialOrd<i8x64> for i8x64
[src]
impl PartialOrd<i8x64> for i8x64
fn partial_cmp(&self, other: &i8x64) -> Option<Ordering>
[src]
fn partial_cmp(&self, other: &i8x64) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
fn lt(&self, other: &i8x64) -> bool
[src]
fn lt(&self, other: &i8x64) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
fn le(&self, other: &i8x64) -> bool
[src]
fn le(&self, other: &i8x64) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &i8x64) -> bool
[src]
fn gt(&self, other: &i8x64) -> bool
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
fn ge(&self, other: &i8x64) -> bool
[src]
fn ge(&self, other: &i8x64) -> bool
This method tests greater than or equal to (for self
and other
) and is used by the >=
operator. Read more
impl BitXor<i8> for i8x64
[src]
impl BitXor<i8> for i8x64
type Output = i8x64
The resulting type after applying the ^
operator.
fn bitxor(self, other: i8) -> i8x64
[src]
fn bitxor(self, other: i8) -> i8x64
Performs the ^
operation.
impl BitXor<i8x64> for i8
[src]
impl BitXor<i8x64> for i8
type Output = i8x64
The resulting type after applying the ^
operator.
fn bitxor(self, other: i8x64) -> i8x64
[src]
fn bitxor(self, other: i8x64) -> i8x64
Performs the ^
operation.
impl BitXor<i8x64> for i8x64
[src]
impl BitXor<i8x64> for i8x64
type Output = i8x64
The resulting type after applying the ^
operator.
fn bitxor(self, other: i8x64) -> i8x64
[src]
fn bitxor(self, other: i8x64) -> i8x64
Performs the ^
operation.
impl Not for i8x64
[src]
impl Not for i8x64
type Output = i8x64
The resulting type after applying the !
operator.
fn not(self) -> i8x64
[src]
fn not(self) -> i8x64
Performs the unary !
operation.
impl Eq for i8x64
[src]
impl Eq for i8x64
impl PartialEq<i8x64> for i8x64
[src]
impl PartialEq<i8x64> for i8x64
fn eq(&self, other: &i8x64) -> bool
[src]
fn eq(&self, other: &i8x64) -> bool
This method tests for self
and other
values to be equal, and is used by ==
. Read more
fn ne(&self, other: &i8x64) -> bool
[src]
fn ne(&self, other: &i8x64) -> bool
This method tests for !=
.
impl LowerHex for i8x64
[src]
impl LowerHex for i8x64
fn 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<i8x64> for i8
[src]
impl Rem<i8x64> for i8
type Output = i8x64
The resulting type after applying the %
operator.
fn rem(self, other: i8x64) -> i8x64
[src]
fn rem(self, other: i8x64) -> i8x64
Performs the %
operation.
impl Rem<i8x64> for i8x64
[src]
impl Rem<i8x64> for i8x64
type Output = i8x64
The resulting type after applying the %
operator.
fn rem(self, other: i8x64) -> i8x64
[src]
fn rem(self, other: i8x64) -> i8x64
Performs the %
operation.
impl Rem<i8> for i8x64
[src]
impl Rem<i8> for i8x64
type Output = i8x64
The resulting type after applying the %
operator.
fn rem(self, other: i8) -> i8x64
[src]
fn rem(self, other: i8) -> i8x64
Performs the %
operation.
impl FromBits<i32x16> for i8x64
[src]
impl FromBits<i32x16> for i8x64
impl FromBits<i8x64> for i32x16
[src]
impl FromBits<i8x64> for i32x16
impl FromBits<i8x64> for f64x8
[src]
impl FromBits<i8x64> for f64x8
impl FromBits<i8x64> for i64x8
[src]
impl FromBits<i8x64> for i64x8
impl FromBits<u8x64> for i8x64
[src]
impl FromBits<u8x64> for i8x64
impl FromBits<m1x32> for i8x64
[src]
impl FromBits<m1x32> for i8x64
impl FromBits<i8x64> for u32x16
[src]
impl FromBits<i8x64> for u32x16
impl FromBits<i16x32> for i8x64
[src]
impl FromBits<i16x32> for i8x64
impl FromBits<u64x8> for i8x64
[src]
impl FromBits<u64x8> for i8x64
impl FromBits<u16x32> for i8x64
[src]
impl FromBits<u16x32> for i8x64
impl FromBits<f64x8> for i8x64
[src]
impl FromBits<f64x8> for i8x64
impl FromBits<i64x8> for i8x64
[src]
impl FromBits<i64x8> for i8x64
impl FromBits<i8x64> for u8x64
[src]
impl FromBits<i8x64> for u8x64
impl FromBits<m1x64> for i8x64
[src]
impl FromBits<m1x64> for i8x64
impl FromBits<i8x64> for u16x32
[src]
impl FromBits<i8x64> for u16x32
impl FromBits<i8x64> for f32x16
[src]
impl FromBits<i8x64> for f32x16
impl FromBits<m1x16> for i8x64
[src]
impl FromBits<m1x16> for i8x64
impl FromBits<i8x64> for i16x32
[src]
impl FromBits<i8x64> for i16x32
impl FromBits<i8x64> for u64x8
[src]
impl FromBits<i8x64> for u64x8
impl FromBits<u32x16> for i8x64
[src]
impl FromBits<u32x16> for i8x64
impl FromBits<f32x16> for i8x64
[src]
impl FromBits<f32x16> for i8x64
impl FromBits<m1x8> for i8x64
[src]
impl FromBits<m1x8> for i8x64
impl Mul<i8x64> for i8x64
[src]
impl Mul<i8x64> for i8x64
type Output = i8x64
The resulting type after applying the *
operator.
fn mul(self, other: i8x64) -> i8x64
[src]
fn mul(self, other: i8x64) -> i8x64
Performs the *
operation.
impl Mul<i8> for i8x64
[src]
impl Mul<i8> for i8x64
type Output = i8x64
The resulting type after applying the *
operator.
fn mul(self, other: i8) -> i8x64
[src]
fn mul(self, other: i8) -> i8x64
Performs the *
operation.
impl Mul<i8x64> for i8
[src]
impl Mul<i8x64> for i8
type Output = i8x64
The resulting type after applying the *
operator.
fn mul(self, other: i8x64) -> i8x64
[src]
fn mul(self, other: i8x64) -> i8x64
Performs the *
operation.
impl Hash for i8x64
[src]
impl Hash for i8x64