Struct simd::i8x16 [] [src]

#[repr(simd)]
pub struct i8x16(_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _);

A SIMD vector of 16 i8s.

Methods

impl i8x16
[src]

Create a new instance.

Create a new instance where every lane has value x.

Compare for equality.

Compare for equality.

Compare for equality.

Compare for equality.

Compare for equality.

Compare for equality.

Extract the value of the idxth lane of self.

Panics

extract will panic if idx is out of bounds.

Return a new vector where the idxth lane is replaced by elem.

Panics

replace will panic if idx is out of bounds.

Load a new value from the idxth position of array.

This is equivalent to the following, but is possibly more efficient:

Self::new(array[idx], array[idx + 1], ...)

Panics

load will panic if idx is out of bounds in array, or if array[idx..] is too short.

Store the elements of self to array, starting at the idxth position.

This is equivalent to the following, but is possibly more efficient:

array[i] = self.extract(0);
array[i + 1] = self.extract(1);
// ...

Panics

store will panic if idx is out of bounds in array, or if array[idx...] is too short.

impl i8x16
[src]

Convert each lane to an unsigned integer.

Trait Implementations

impl Neg for i8x16
[src]

The resulting type after applying the - operator

The method for the unary - operator

impl Not for i8x16
[src]

The resulting type after applying the ! operator

The method for the unary ! operator

impl Add for i8x16
[src]

The resulting type after applying the + operator

The method for the + operator

impl Sub for i8x16
[src]

The resulting type after applying the - operator

The method for the - operator

impl Mul for i8x16
[src]

The resulting type after applying the * operator

The method for the * operator

impl BitAnd for i8x16
[src]

The resulting type after applying the & operator

The method for the & operator

impl BitOr for i8x16
[src]

The resulting type after applying the | operator

The method for the | operator

impl BitXor for i8x16
[src]

The resulting type after applying the ^ operator

The method for the ^ operator

impl Shl<u8> for i8x16
[src]

The resulting type after applying the << operator

The method for the << operator

impl Shr<u8> for i8x16
[src]

The resulting type after applying the >> operator

The method for the >> operator

impl Shl<u16> for i8x16
[src]

The resulting type after applying the << operator

The method for the << operator

impl Shr<u16> for i8x16
[src]

The resulting type after applying the >> operator

The method for the >> operator

impl Shl<u32> for i8x16
[src]

The resulting type after applying the << operator

The method for the << operator

impl Shr<u32> for i8x16
[src]

The resulting type after applying the >> operator

The method for the >> operator

impl Shl<u64> for i8x16
[src]

The resulting type after applying the << operator

The method for the << operator

impl Shr<u64> for i8x16
[src]

The resulting type after applying the >> operator

The method for the >> operator

impl Shl<usize> for i8x16
[src]

The resulting type after applying the << operator

The method for the << operator

impl Shr<usize> for i8x16
[src]

The resulting type after applying the >> operator

The method for the >> operator

impl Shl<i8> for i8x16
[src]

The resulting type after applying the << operator

The method for the << operator

impl Shr<i8> for i8x16
[src]

The resulting type after applying the >> operator

The method for the >> operator

impl Shl<i16> for i8x16
[src]

The resulting type after applying the << operator

The method for the << operator

impl Shr<i16> for i8x16
[src]

The resulting type after applying the >> operator

The method for the >> operator

impl Shl<i32> for i8x16
[src]

The resulting type after applying the << operator

The method for the << operator

impl Shr<i32> for i8x16
[src]

The resulting type after applying the >> operator

The method for the >> operator

impl Shl<i64> for i8x16
[src]

The resulting type after applying the << operator

The method for the << operator

impl Shr<i64> for i8x16
[src]

The resulting type after applying the >> operator

The method for the >> operator

impl Shl<isize> for i8x16
[src]

The resulting type after applying the << operator

The method for the << operator

impl Shr<isize> for i8x16
[src]

The resulting type after applying the >> operator

The method for the >> operator

impl Sse2I8x16 for i8x16
[src]

impl Debug for i8x16
[src]

Formats the value using the given formatter.

impl Copy for i8x16
[src]

impl Simd for i8x16
[src]

The corresponding boolean vector type.

The element that this vector stores.

impl Clone for i8x16
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more