Type Definition packed_simd::m64x8

source ·
pub type m64x8 = Simd<[m64; 8]>;
Expand description

A 512-bit vector mask with 8 m64 lanes.

Implementations§

source§

impl m64x8

source

pub const fn new( x0: bool, x1: bool, x2: bool, x3: bool, x4: bool, x5: bool, x6: bool, x7: bool ) -> Self

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

source

pub const fn lanes() -> usize

Returns the number of vector lanes.

source

pub const fn splat(value: bool) -> Self

Constructs a new instance with each element initialized to value.

source

pub fn extract(self, index: usize) -> bool

Extracts the value at index.

Panics

If index >= Self::lanes().

source

pub unsafe fn extract_unchecked(self, index: usize) -> bool

Extracts the value at index.

Safety

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

source

pub fn replace(self, index: usize, new_value: bool) -> Self

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

Panics

If index >= Self::lanes().

source

pub unsafe fn replace_unchecked(self, index: usize, new_value: bool) -> Self

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

Safety

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

source§

impl m64x8

source

pub fn and(self) -> bool

Lane-wise bitwise and of the vector elements.

Note: if the vector has one lane, the first element of the vector is returned.

source

pub fn or(self) -> bool

Lane-wise bitwise or of the vector elements.

Note: if the vector has one lane, the first element of the vector is returned.

source

pub fn xor(self) -> bool

Lane-wise bitwise xor of the vector elements.

Note: if the vector has one lane, the first element of the vector is returned.

source§

impl m64x8

source

pub fn all(self) -> bool

Are all vector lanes true?

source

pub fn any(self) -> bool

Is any vector lane true?

source

pub fn none(self) -> bool

Are all vector lanes false?

source§

impl m64x8

source

pub fn eq(self, other: Self) -> m64x8

Lane-wise equality comparison.

source

pub fn ne(self, other: Self) -> m64x8

Lane-wise inequality comparison.

source

pub fn lt(self, other: Self) -> m64x8

Lane-wise less-than comparison.

source

pub fn le(self, other: Self) -> m64x8

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

source

pub fn gt(self, other: Self) -> m64x8

Lane-wise greater-than comparison.

source

pub fn ge(self, other: Self) -> m64x8

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

source§

impl m64x8

source

pub fn select<T>(self, a: Simd<T>, b: Simd<T>) -> Simd<T>where T: SimdArray<NT = <[m64; 8] as SimdArray>::NT>,

Selects elements of a and b using mask.

The lanes of the result for which the mask is true contain the values of a. The remaining lanes contain the values of b.

source§

impl m64x8

source

pub fn partial_lex_ord(&self) -> LexicographicallyOrdered<m64x8>

Returns a wrapper that implements PartialOrd.

source§

impl m64x8

source

pub fn lex_ord(&self) -> LexicographicallyOrdered<m64x8>

Returns a wrapper that implements Ord.

source§

impl m64x8

source

pub fn shuffle1_dyn<I>(self, indices: I) -> Selfwhere Self: Shuffle1Dyn<Indices = I>,

Shuffle vector elements according to indices.

source§

impl m64x8

source

pub fn bitmask(self) -> u8

Creates a bitmask with the MSB of each vector lane.

If the vector has less than 8 lanes, the bits that do not correspond to any vector lanes are cleared.

Trait Implementations§

source§

impl BitAnd<Simd<[m64; 8]>> for m64x8

§

type Output = Simd<[m64; 8]>

The resulting type after applying the & operator.
source§

fn bitand(self, other: Self) -> Self

Performs the & operation. Read more
source§

impl BitAnd<bool> for m64x8

§

type Output = Simd<[m64; 8]>

The resulting type after applying the & operator.
source§

fn bitand(self, other: bool) -> Self

Performs the & operation. Read more
source§

impl BitAndAssign<Simd<[m64; 8]>> for m64x8

source§

fn bitand_assign(&mut self, other: Self)

Performs the &= operation. Read more
source§

impl BitAndAssign<bool> for m64x8

source§

fn bitand_assign(&mut self, other: bool)

Performs the &= operation. Read more
source§

impl BitOr<Simd<[m64; 8]>> for m64x8

§

type Output = Simd<[m64; 8]>

The resulting type after applying the | operator.
source§

fn bitor(self, other: Self) -> Self

Performs the | operation. Read more
source§

impl BitOr<bool> for m64x8

§

type Output = Simd<[m64; 8]>

The resulting type after applying the | operator.
source§

fn bitor(self, other: bool) -> Self

Performs the | operation. Read more
source§

impl BitOrAssign<Simd<[m64; 8]>> for m64x8

source§

fn bitor_assign(&mut self, other: Self)

Performs the |= operation. Read more
source§

impl BitOrAssign<bool> for m64x8

source§

fn bitor_assign(&mut self, other: bool)

Performs the |= operation. Read more
source§

impl BitXor<Simd<[m64; 8]>> for m64x8

§

type Output = Simd<[m64; 8]>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: Self) -> Self

Performs the ^ operation. Read more
source§

impl BitXor<bool> for m64x8

§

type Output = Simd<[m64; 8]>

The resulting type after applying the ^ operator.
source§

fn bitxor(self, other: bool) -> Self

Performs the ^ operation. Read more
source§

impl BitXorAssign<Simd<[m64; 8]>> for m64x8

source§

fn bitxor_assign(&mut self, other: Self)

Performs the ^= operation. Read more
source§

impl BitXorAssign<bool> for m64x8

source§

fn bitxor_assign(&mut self, other: bool)

Performs the ^= operation. Read more
source§

impl Debug for m64x8

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for m64x8

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl From<[m64; 8]> for m64x8

source§

fn from(array: [m64; 8]) -> Self

Converts to this type from the input type.
source§

impl From<Simd<[m16; 8]>> for m64x8

source§

fn from(source: m16x8) -> Self

Converts to this type from the input type.
source§

impl From<Simd<[m32; 8]>> for m64x8

source§

fn from(source: m32x8) -> Self

Converts to this type from the input type.
source§

impl From<Simd<[m8; 8]>> for m64x8

source§

fn from(source: m8x8) -> Self

Converts to this type from the input type.
source§

impl FromBits<Simd<[m128; 4]>> for m64x8

source§

fn from_bits(x: m128x4) -> Self

Available on crate feature into_bits only.
Safe lossless bitwise transmute from T to Self.
source§

impl FromCast<Simd<[f32; 8]>> for m64x8

source§

fn from_cast(x: f32x8) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[f64; 8]>> for m64x8

source§

fn from_cast(x: f64x8) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[i16; 8]>> for m64x8

source§

fn from_cast(x: i16x8) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[i32; 8]>> for m64x8

source§

fn from_cast(x: i32x8) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[i64; 8]>> for m64x8

source§

fn from_cast(x: i64x8) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[i8; 8]>> for m64x8

source§

fn from_cast(x: i8x8) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[isize; 8]>> for m64x8

source§

fn from_cast(x: isizex8) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[m16; 8]>> for m64x8

source§

fn from_cast(x: m16x8) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[m32; 8]>> for m64x8

source§

fn from_cast(x: m32x8) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[m8; 8]>> for m64x8

source§

fn from_cast(x: m8x8) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[msize; 8]>> for m64x8

source§

fn from_cast(x: msizex8) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[u16; 8]>> for m64x8

source§

fn from_cast(x: u16x8) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[u32; 8]>> for m64x8

source§

fn from_cast(x: u32x8) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[u64; 8]>> for m64x8

source§

fn from_cast(x: u64x8) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[u8; 8]>> for m64x8

source§

fn from_cast(x: u8x8) -> Self

Numeric cast from T to Self.
source§

impl FromCast<Simd<[usize; 8]>> for m64x8

source§

fn from_cast(x: usizex8) -> Self

Numeric cast from T to Self.
source§

impl Not for m64x8

§

type Output = Simd<[m64; 8]>

The resulting type after applying the ! operator.
source§

fn not(self) -> Self

Performs the unary ! operation. Read more
source§

impl PartialEq<Simd<[m64; 8]>> for m64x8

source§

fn eq(&self, other: &Self) -> bool

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

fn ne(&self, other: &Self) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Simd for m64x8

§

type Element = m64

Element type of the SIMD vector
source§

const LANES: usize = 8usize

The number of elements in the SIMD vector.
§

type LanesType = [u32; 8]

The type: [u32; Self::N].
source§

impl Eq for m64x8