Struct core::simd::i16x16 [] [src]

#[repr(simd)]
pub struct i16x16(_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _);
🔬 This is a nightly-only experimental API. (stdsimd #48556)

A 256-bit vector with 16 i16 lanes.

Methods

impl i16x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Creates a new instance with each vector elements initialized with the provided values.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Returns the number of vector lanes.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Constructs a new instance with each element initialized to value.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Extracts the value at index.

Panics

If index >= Self::lanes().

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Extracts the value at index.

If index >= Self::lanes() the behavior is undefined.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Returns a new vector where the value at index is replaced by new_value.

Panics

If index >= Self::lanes().

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Returns a new vector where the value at index is replaced by new_value.

Panics

If index >= Self::lanes().

impl i16x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

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.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Writes the values of the vector to the slice.

Panics

If slice.len() < Self::lanes().

🔬 This is a nightly-only experimental API. (stdsimd #48556)

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.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Writes the values of the vector to the slice.

Precondition

If slice.len() < Self::lanes() the behavior is undefined.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

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.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Instantiates a new vector with the values of the slice.

Panics

If slice.len() < Self::lanes().

🔬 This is a nightly-only experimental API. (stdsimd #48556)

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.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Instantiates a new vector with the values of the slice.

Precondition

If slice.len() < Self::lanes() the behavior is undefined.

impl i16x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Lane-wise equality comparison.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Lane-wise inequality comparison.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Lane-wise less-than comparison.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Lane-wise less-than-or-equals comparison.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Lane-wise greater-than comparison.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Lane-wise greater-than-or-equals comparison.

impl i16x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Lane-wise addition of the vector elements.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Lane-wise multiplication of the vector elements.

impl i16x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Largest vector value.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Smallest vector value.

impl i16x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Lane-wise bitwise and of the vector elements.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Lane-wise bitwise or of the vector elements.

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Lane-wise bitwise xor of the vector elements.

Trait Implementations

impl Copy for i16x16
[src]

impl Debug for i16x16
[src]

Formats the value using the given formatter. Read more

impl PartialOrd for i16x16
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

impl Clone for i16x16
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Hash for i16x16
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Add for i16x16
[src]

The resulting type after applying the + operator.

Performs the + operation.

impl Sub for i16x16
[src]

The resulting type after applying the - operator.

Performs the - operation.

impl Mul for i16x16
[src]

The resulting type after applying the * operator.

Performs the * operation.

impl Div for i16x16
[src]

The resulting type after applying the / operator.

Performs the / operation.

impl Rem for i16x16
[src]

The resulting type after applying the % operator.

Performs the % operation.

impl AddAssign for i16x16
[src]

Performs the += operation.

impl SubAssign for i16x16
[src]

Performs the -= operation.

impl MulAssign for i16x16
[src]

Performs the *= operation.

impl DivAssign for i16x16
[src]

Performs the /= operation.

impl RemAssign for i16x16
[src]

Performs the %= operation.

impl Neg for i16x16
[src]

The resulting type after applying the - operator.

Performs the unary - operation.

impl Not for i16x16
[src]

The resulting type after applying the ! operator.

Performs the unary ! operation.

impl BitXor for i16x16
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitAnd for i16x16
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl BitOr for i16x16
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl BitAndAssign for i16x16
[src]

Performs the &= operation.

impl BitOrAssign for i16x16
[src]

Performs the |= operation.

impl BitXorAssign for i16x16
[src]

Performs the ^= operation.

impl Shl<u8> for i16x16
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl Shr<u8> for i16x16
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl ShlAssign<u8> for i16x16
[src]

Performs the <<= operation.

impl ShrAssign<u8> for i16x16
[src]

Performs the >>= operation.

impl Shl<u16> for i16x16
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl Shr<u16> for i16x16
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl ShlAssign<u16> for i16x16
[src]

Performs the <<= operation.

impl ShrAssign<u16> for i16x16
[src]

Performs the >>= operation.

impl Shl<u32> for i16x16
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl Shr<u32> for i16x16
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl ShlAssign<u32> for i16x16
[src]

Performs the <<= operation.

impl ShrAssign<u32> for i16x16
[src]

Performs the >>= operation.

impl Shl<u64> for i16x16
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl Shr<u64> for i16x16
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl ShlAssign<u64> for i16x16
[src]

Performs the <<= operation.

impl ShrAssign<u64> for i16x16
[src]

Performs the >>= operation.

impl Shl<usize> for i16x16
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl Shr<usize> for i16x16
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl ShlAssign<usize> for i16x16
[src]

Performs the <<= operation.

impl ShrAssign<usize> for i16x16
[src]

Performs the >>= operation.

impl Shl<i8> for i16x16
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl Shr<i8> for i16x16
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl ShlAssign<i8> for i16x16
[src]

Performs the <<= operation.

impl ShrAssign<i8> for i16x16
[src]

Performs the >>= operation.

impl Shl<i16> for i16x16
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl Shr<i16> for i16x16
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl ShlAssign<i16> for i16x16
[src]

Performs the <<= operation.

impl ShrAssign<i16> for i16x16
[src]

Performs the >>= operation.

impl Shl<i32> for i16x16
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl Shr<i32> for i16x16
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl ShlAssign<i32> for i16x16
[src]

Performs the <<= operation.

impl ShrAssign<i32> for i16x16
[src]

Performs the >>= operation.

impl Shl<i64> for i16x16
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl Shr<i64> for i16x16
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl ShlAssign<i64> for i16x16
[src]

Performs the <<= operation.

impl ShrAssign<i64> for i16x16
[src]

Performs the >>= operation.

impl Shl<isize> for i16x16
[src]

The resulting type after applying the << operator.

Performs the << operation.

impl Shr<isize> for i16x16
[src]

The resulting type after applying the >> operator.

Performs the >> operation.

impl ShlAssign<isize> for i16x16
[src]

Performs the <<= operation.

impl ShrAssign<isize> for i16x16
[src]

Performs the >>= operation.

impl LowerHex for i16x16
[src]

Formats the value using the given formatter.

impl Eq for i16x16
[src]

impl PartialEq<i16x16> for i16x16
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl Default for i16x16
[src]

Returns the "default value" for a type. Read more

impl FromBits<i16x16> for i8x32
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<i16x16> for u8x32
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<u64x4> for i16x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<i64x4> for i16x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<f64x4> for i16x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<u32x8> for i16x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<i32x8> for i16x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<f32x8> for i16x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<u16x16> for i16x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<u8x32> for i16x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<i8x32> for i16x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<b8x32> for i16x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<i16x16> for u16x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<i16x16> for i32x8
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<i16x16> for u32x8
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<i16x16> for f32x8
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<i16x16> for i64x4
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<i16x16> for u64x4
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<i16x16> for f64x4
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<__m256> for i16x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<__m256i> for i16x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<__m256d> for i16x16
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl From<u32x16> for i16x16
[src]

Performs the conversion.

impl From<i32x16> for i16x16
[src]

Performs the conversion.

impl From<f32x16> for i16x16
[src]

Performs the conversion.

impl From<u16x16> for i16x16
[src]

Performs the conversion.

impl From<u8x16> for i16x16
[src]

Performs the conversion.

impl From<i8x16> for i16x16
[src]

Performs the conversion.

impl From<i16x16> for u16x16
[src]

Performs the conversion.

impl From<i16x16> for f32x16
[src]

Performs the conversion.

impl From<i16x16> for i32x16
[src]

Performs the conversion.

impl From<i16x16> for u32x16
[src]

Performs the conversion.

impl FromBits<i16x16> for __m256
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<i16x16> for __m256i
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

impl FromBits<i16x16> for __m256d
[src]

🔬 This is a nightly-only experimental API. (stdsimd #48556)

Safe lossless bitwise from T to Self.

Auto Trait Implementations

impl Send for i16x16

impl Sync for i16x16