Struct std::simd::b8x4 [] [src]

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

A 32-bit wide vector with 4 bool lanes.

Methods

impl b8x4
[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 b8x4
[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 b8x4
[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 b8x4
[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 BitAnd<b8x4> for b8x4
[src]

The resulting type after applying the & operator.

Performs the & operation.

impl Copy for b8x4
[src]

impl BitOrAssign<b8x4> for b8x4
[src]

Performs the |= operation.

impl Debug for b8x4
[src]

Formats the value using the given formatter. Read more

impl BitXor<b8x4> for b8x4
[src]

The resulting type after applying the ^ operator.

Performs the ^ operation.

impl PartialEq<b8x4> for b8x4
[src]

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

This method tests for !=.

impl Not for b8x4
[src]

The resulting type after applying the ! operator.

Performs the unary ! operation.

impl BitXorAssign<b8x4> for b8x4
[src]

Performs the ^= operation.

impl BitAndAssign<b8x4> for b8x4
[src]

Performs the &= operation.

impl FromBits<b8x4> for i16x2
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<b8x4> for i8x4
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<b8x4> for u16x2
[src]

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

Safe lossless bitwise from T to Self.

impl FromBits<b8x4> for u8x4
[src]

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

Safe lossless bitwise from T to Self.

impl BitOr<b8x4> for b8x4
[src]

The resulting type after applying the | operator.

Performs the | operation.

impl Default for b8x4
[src]

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

impl Clone for b8x4
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialOrd<b8x4> for b8x4
[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 Eq for b8x4
[src]

Auto Trait Implementations

impl Send for b8x4

impl Sync for b8x4