Struct core::simd::m1x8[][src]

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

A 8-bit vector mask with 8 lanes (FIXME: 512-bit wide).

Methods

impl m1x8
[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 m1x8
[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.

impl m1x8
[src]

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

Are all vector lanes true?

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

Is any vector lanes true?

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

Are all vector lanes false?

impl m1x8
[src]

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

Selects elements of a and b using mask.

For each lane, the result contains the element of a if the mask is true, and the element of b otherwise.

impl m1x8
[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.

Trait Implementations

impl From<m1x8> for i16x8
[src]

Performs the conversion.

impl From<m1x8> for u16x8
[src]

Performs the conversion.

impl From<m1x8> for m16x8
[src]

Performs the conversion.

impl From<m1x8> for f32x8
[src]

Performs the conversion.

impl From<m1x8> for i32x8
[src]

Performs the conversion.

impl From<m1x8> for u32x8
[src]

Performs the conversion.

impl From<m1x8> for m32x8
[src]

Performs the conversion.

impl Copy for m1x8
[src]

impl Clone for m1x8
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for m1x8
[src]

Formats the value using the given formatter. Read more

impl PartialOrd for m1x8
[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 Not for m1x8
[src]

The resulting type after applying the ! operator.

Performs the unary ! operation.

impl BitXor for m1x8
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitAnd for m1x8
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl BitOr for m1x8
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl BitAndAssign for m1x8
[src]

Performs the &= operation.

impl BitOrAssign for m1x8
[src]

Performs the |= operation.

impl BitXorAssign for m1x8
[src]

Performs the ^= operation.

impl BitXor<bool> for m1x8
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitXor<m1x8> for bool
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl BitAnd<bool> for m1x8
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl BitAnd<m1x8> for bool
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl BitOr<bool> for m1x8
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl BitOr<m1x8> for bool
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl BitAndAssign<bool> for m1x8
[src]

Performs the &= operation.

impl BitOrAssign<bool> for m1x8
[src]

Performs the |= operation.

impl BitXorAssign<bool> for m1x8
[src]

Performs the ^= operation.

impl Eq for m1x8
[src]

impl PartialEq<m1x8> for m1x8
[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 m1x8
[src]

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

impl FromBits<m1x8> for i8x64
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<m1x8> for u8x64
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<m1x8> for i16x32
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<m1x8> for u16x32
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<m1x8> for i32x16
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<m1x8> for u32x16
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<m1x8> for f32x16
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<m1x8> for i64x8
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<m1x8> for u64x8
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<m1x8> for f64x8
[src]

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

Safe lossless bitwise from T to Self.

impl From<m1x8> for f64x8
[src]

Performs the conversion.

impl From<m1x8> for i64x8
[src]

Performs the conversion.

impl From<m1x8> for u64x8
[src]

Performs the conversion.

impl From<m32x8> for m1x8
[src]

Performs the conversion.

impl From<m16x8> for m1x8
[src]

Performs the conversion.

impl From<m8x8> for m1x8
[src]

Performs the conversion.

impl From<m1x8> for i8x8
[src]

Performs the conversion.

impl From<m1x8> for u8x8
[src]

Performs the conversion.

impl From<m1x8> for m8x8
[src]

Performs the conversion.

Auto Trait Implementations

impl Send for m1x8

impl Sync for m1x8