Type Definition packed_simd_2::m16x32
source · [−]Expand description
A 512-bit vector mask with 32 m16
lanes.
Implementations
sourceimpl m16x32
impl m16x32
sourcepub const fn new(
x0: bool,
x1: bool,
x2: bool,
x3: bool,
x4: bool,
x5: bool,
x6: bool,
x7: bool,
x8: bool,
x9: bool,
x10: bool,
x11: bool,
x12: bool,
x13: bool,
x14: bool,
x15: bool,
x16: bool,
x17: bool,
x18: bool,
x19: bool,
x20: bool,
x21: bool,
x22: bool,
x23: bool,
x24: bool,
x25: bool,
x26: bool,
x27: bool,
x28: bool,
x29: bool,
x30: bool,
x31: bool
) -> Self
pub const fn new(
x0: bool,
x1: bool,
x2: bool,
x3: bool,
x4: bool,
x5: bool,
x6: bool,
x7: bool,
x8: bool,
x9: bool,
x10: bool,
x11: bool,
x12: bool,
x13: bool,
x14: bool,
x15: bool,
x16: bool,
x17: bool,
x18: bool,
x19: bool,
x20: bool,
x21: bool,
x22: bool,
x23: bool,
x24: bool,
x25: bool,
x26: bool,
x27: bool,
x28: bool,
x29: bool,
x30: bool,
x31: bool
) -> Self
Creates a new instance with each vector elements initialized with the provided values.
sourcepub const fn splat(value: bool) -> Self
pub const fn splat(value: bool) -> Self
Constructs a new instance with each element initialized to
value
.
sourcepub unsafe fn extract_unchecked(self, index: usize) -> bool
pub unsafe fn extract_unchecked(self, index: usize) -> bool
sourcepub fn replace(self, index: usize, new_value: bool) -> Self
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()
.
sourcepub unsafe fn replace_unchecked(self, index: usize, new_value: bool) -> Self
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.
sourceimpl m16x32
impl m16x32
sourcepub fn and(self) -> bool
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.
sourceimpl m16x32
impl m16x32
sourcepub fn partial_lex_ord(&self) -> LexicographicallyOrdered<m16x32>
pub fn partial_lex_ord(&self) -> LexicographicallyOrdered<m16x32>
Returns a wrapper that implements PartialOrd
.
sourceimpl m16x32
impl m16x32
sourcepub fn lex_ord(&self) -> LexicographicallyOrdered<m16x32>
pub fn lex_ord(&self) -> LexicographicallyOrdered<m16x32>
Returns a wrapper that implements Ord
.
sourceimpl m16x32
impl m16x32
sourcepub fn shuffle1_dyn<I>(self, indices: I) -> Self where
Self: Shuffle1Dyn<Indices = I>,
pub fn shuffle1_dyn<I>(self, indices: I) -> Self where
Self: Shuffle1Dyn<Indices = I>,
Shuffle vector elements according to indices
.
Trait Implementations
sourceimpl BitAndAssign<Simd<[m16; 32]>> for m16x32
impl BitAndAssign<Simd<[m16; 32]>> for m16x32
sourcefn bitand_assign(&mut self, other: Self)
fn bitand_assign(&mut self, other: Self)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<bool> for m16x32
impl BitAndAssign<bool> for m16x32
sourcefn bitand_assign(&mut self, other: bool)
fn bitand_assign(&mut self, other: bool)
Performs the &=
operation. Read more
sourceimpl BitOrAssign<Simd<[m16; 32]>> for m16x32
impl BitOrAssign<Simd<[m16; 32]>> for m16x32
sourcefn bitor_assign(&mut self, other: Self)
fn bitor_assign(&mut self, other: Self)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<bool> for m16x32
impl BitOrAssign<bool> for m16x32
sourcefn bitor_assign(&mut self, other: bool)
fn bitor_assign(&mut self, other: bool)
Performs the |=
operation. Read more
sourceimpl BitXorAssign<Simd<[m16; 32]>> for m16x32
impl BitXorAssign<Simd<[m16; 32]>> for m16x32
sourcefn bitxor_assign(&mut self, other: Self)
fn bitxor_assign(&mut self, other: Self)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<bool> for m16x32
impl BitXorAssign<bool> for m16x32
sourcefn bitxor_assign(&mut self, other: bool)
fn bitxor_assign(&mut self, other: bool)
Performs the ^=
operation. Read more