On this page
Struct std::simd::prelude::Mask
pub struct Mask<T, const LANES: usize>(/* private fields */)
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount;
portable_simd
#86656)
A SIMD vector mask for LANES
elements of width specified by Element
.
Masks represent boolean inclusion/exclusion on a per-lane basis.
The layout of this type is unspecified, and may change between platforms and/or Rust versions, and code should not assume that it is equivalent to [T; LANES]
.
Implementations
impl<T, const LANES: usize> Mask<T, LANES>
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
pub fn splat(value: bool) -> Mask<T, LANES>
portable_simd
#86656)
Construct a mask by setting all lanes to the given value.
pub fn from_array(array: [bool; LANES]) -> Mask<T, LANES>
portable_simd
#86656)
Converts an array of bools to a SIMD mask.
pub fn to_array(self) -> [bool; LANES]
portable_simd
#86656)
Converts a SIMD mask to an array of bools.
pub unsafe fn from_int_unchecked(value: Simd<T, LANES>) -> Mask<T, LANES>
portable_simd
#86656)
Converts a vector of integers to a mask, where 0 represents false
and -1 represents true
.
Safety
All lanes must be either 0 or -1.
pub fn from_int(value: Simd<T, LANES>) -> Mask<T, LANES>
portable_simd
#86656)
Converts a vector of integers to a mask, where 0 represents false
and -1 represents true
.
Panics
Panics if any lane is not 0 or -1.
pub fn to_int(self) -> Simd<T, LANES>
portable_simd
#86656)
Converts the mask to a vector of integers, where 0 represents false
and -1 represents true
.
pub fn cast<U>(self) -> Mask<U, LANES>
where
U: MaskElement,
portable_simd
#86656)
Converts the mask to a mask of any other lane size.
pub unsafe fn test_unchecked(&self, lane: usize) -> bool
portable_simd
#86656)
Tests the value of the specified lane.
Safety
lane
must be less than LANES
.
pub fn test(&self, lane: usize) -> bool
portable_simd
#86656)
Tests the value of the specified lane.
Panics
Panics if lane
is greater than or equal to the number of lanes in the vector.
pub unsafe fn set_unchecked(&mut self, lane: usize, value: bool)
portable_simd
#86656)
Sets the value of the specified lane.
Safety
lane
must be less than LANES
.
pub fn set(&mut self, lane: usize, value: bool)
portable_simd
#86656)
Sets the value of the specified lane.
Panics
Panics if lane
is greater than or equal to the number of lanes in the vector.
pub fn any(self) -> bool
portable_simd
#86656)
Returns true if any lane is set, or false otherwise.
pub fn all(self) -> bool
portable_simd
#86656)
Returns true if all lanes are set, or false otherwise.
impl<T, const LANES: usize> Mask<T, LANES>
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
pub fn select<U>(
self,
true_values: Simd<U, LANES>,
false_values: Simd<U, LANES>
) -> Simd<U, LANES>
where
U: SimdElement<Mask = T>,
portable_simd
#86656)
Choose lanes from two vectors.
For each lane in the mask, choose the corresponding lane from true_values
if that lane mask is true, and false_values
if that lane mask is false.
Examples
let a = Simd::from_array([0, 1, 2, 3]);
let b = Simd::from_array([4, 5, 6, 7]);
let mask = Mask::from_array([true, false, false, true]);
let c = mask.select(a, b);
assert_eq!(c.to_array(), [0, 5, 6, 3]);
pub fn select_mask(
self,
true_values: Mask<T, LANES>,
false_values: Mask<T, LANES>
) -> Mask<T, LANES>
portable_simd
#86656)
Choose lanes from two masks.
For each lane in the mask, choose the corresponding lane from true_values
if that lane mask is true, and false_values
if that lane mask is false.
Examples
let a = Mask::<i32, 4>::from_array([true, true, false, false]);
let b = Mask::<i32, 4>::from_array([false, false, true, true]);
let mask = Mask::<i32, 4>::from_array([true, false, false, true]);
let c = mask.select_mask(a, b);
assert_eq!(c.to_array(), [true, false, true, false]);
Trait Implementations
impl<T, const LANES: usize> BitAnd<Mask<T, LANES>> for bool
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
type Output = Mask<T, LANES>
&
operator.
fn bitand(self, rhs: Mask<T, LANES>) -> Mask<T, LANES>
&
operation. Read more
impl<T, const LANES: usize> BitAnd<bool> for Mask<T, LANES>
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
type Output = Mask<T, LANES>
&
operator.
fn bitand(self, rhs: bool) -> Mask<T, LANES>
&
operation. Read more
impl<T, const LANES: usize> BitAnd for Mask<T, LANES>
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
type Output = Mask<T, LANES>
&
operator.
fn bitand(self, rhs: Mask<T, LANES>) -> Mask<T, LANES>
&
operation. Read more
impl<T, const LANES: usize> BitAndAssign<bool> for Mask<T, LANES>
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
impl<T, const LANES: usize> BitAndAssign for Mask<T, LANES>
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
impl<T, const LANES: usize> BitOr<Mask<T, LANES>> for bool
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
type Output = Mask<T, LANES>
|
operator.
fn bitor(self, rhs: Mask<T, LANES>) -> Mask<T, LANES>
|
operation. Read more
impl<T, const LANES: usize> BitOr<bool> for Mask<T, LANES>
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
type Output = Mask<T, LANES>
|
operator.
fn bitor(self, rhs: bool) -> Mask<T, LANES>
|
operation. Read more
impl<T, const LANES: usize> BitOr for Mask<T, LANES>
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
type Output = Mask<T, LANES>
|
operator.
fn bitor(self, rhs: Mask<T, LANES>) -> Mask<T, LANES>
|
operation. Read more
impl<T, const LANES: usize> BitOrAssign<bool> for Mask<T, LANES>
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
impl<T, const LANES: usize> BitOrAssign for Mask<T, LANES>
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
impl<T, const LANES: usize> BitXor<Mask<T, LANES>> for bool
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
type Output = Mask<T, LANES>
^
operator.
fn bitxor(self, rhs: Mask<T, LANES>) -> <bool as BitXor<Mask<T, LANES>>>::Output
^
operation. Read more
impl<T, const LANES: usize> BitXor<bool> for Mask<T, LANES>
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
type Output = Mask<T, LANES>
^
operator.
fn bitxor(self, rhs: bool) -> <Mask<T, LANES> as BitXor<bool>>::Output
^
operation. Read more
impl<T, const LANES: usize> BitXor for Mask<T, LANES>
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
type Output = Mask<T, LANES>
^
operator.
fn bitxor(self, rhs: Mask<T, LANES>) -> <Mask<T, LANES> as BitXor>::Output
^
operation. Read more
impl<T, const LANES: usize> BitXorAssign<bool> for Mask<T, LANES>
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
impl<T, const LANES: usize> BitXorAssign for Mask<T, LANES>
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
impl<T, const LANES: usize> Clone for Mask<T, LANES>
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
fn clone(&self) -> Mask<T, LANES>
fn clone_from(&mut self, source: &Self)
source
. Read more
impl<T, const LANES: usize> Debug for Mask<T, LANES>
where
T: MaskElement + Debug,
LaneCount<LANES>: SupportedLaneCount,
fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>
impl<T, const LANES: usize> Default for Mask<T, LANES>
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
impl<T, const LANES: usize> From<[bool; LANES]> for Mask<T, LANES>
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
fn from(array: [bool; LANES]) -> Mask<T, LANES>
impl<T, const LANES: usize> From<Mask<T, LANES>> for [bool; LANES]
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
fn from(vector: Mask<T, LANES>) -> [bool; LANES]
impl<const LANES: usize> From<Mask<i16, LANES>> for Mask<i32, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn from(value: Mask<i16, LANES>) -> Mask<i32, LANES>
impl<const LANES: usize> From<Mask<i16, LANES>> for Mask<i64, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn from(value: Mask<i16, LANES>) -> Mask<i64, LANES>
impl<const LANES: usize> From<Mask<i16, LANES>> for Mask<i8, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn from(value: Mask<i16, LANES>) -> Mask<i8, LANES>
impl<const LANES: usize> From<Mask<i16, LANES>> for Mask<isize, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn from(value: Mask<i16, LANES>) -> Mask<isize, LANES>
impl<const LANES: usize> From<Mask<i32, LANES>> for Mask<i16, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn from(value: Mask<i32, LANES>) -> Mask<i16, LANES>
impl<const LANES: usize> From<Mask<i32, LANES>> for Mask<i64, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn from(value: Mask<i32, LANES>) -> Mask<i64, LANES>
impl<const LANES: usize> From<Mask<i32, LANES>> for Mask<i8, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn from(value: Mask<i32, LANES>) -> Mask<i8, LANES>
impl<const LANES: usize> From<Mask<i32, LANES>> for Mask<isize, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn from(value: Mask<i32, LANES>) -> Mask<isize, LANES>
impl<const LANES: usize> From<Mask<i64, LANES>> for Mask<i16, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn from(value: Mask<i64, LANES>) -> Mask<i16, LANES>
impl<const LANES: usize> From<Mask<i64, LANES>> for Mask<i32, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn from(value: Mask<i64, LANES>) -> Mask<i32, LANES>
impl<const LANES: usize> From<Mask<i64, LANES>> for Mask<i8, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn from(value: Mask<i64, LANES>) -> Mask<i8, LANES>
impl<const LANES: usize> From<Mask<i64, LANES>> for Mask<isize, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn from(value: Mask<i64, LANES>) -> Mask<isize, LANES>
impl<const LANES: usize> From<Mask<i8, LANES>> for Mask<i16, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn from(value: Mask<i8, LANES>) -> Mask<i16, LANES>
impl<const LANES: usize> From<Mask<i8, LANES>> for Mask<i32, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn from(value: Mask<i8, LANES>) -> Mask<i32, LANES>
impl<const LANES: usize> From<Mask<i8, LANES>> for Mask<i64, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn from(value: Mask<i8, LANES>) -> Mask<i64, LANES>
impl<const LANES: usize> From<Mask<i8, LANES>> for Mask<isize, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn from(value: Mask<i8, LANES>) -> Mask<isize, LANES>
impl<const LANES: usize> From<Mask<isize, LANES>> for Mask<i16, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn from(value: Mask<isize, LANES>) -> Mask<i16, LANES>
impl<const LANES: usize> From<Mask<isize, LANES>> for Mask<i32, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn from(value: Mask<isize, LANES>) -> Mask<i32, LANES>
impl<const LANES: usize> From<Mask<isize, LANES>> for Mask<i64, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn from(value: Mask<isize, LANES>) -> Mask<i64, LANES>
impl<const LANES: usize> From<Mask<isize, LANES>> for Mask<i8, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn from(value: Mask<isize, LANES>) -> Mask<i8, LANES>
impl<T, const LANES: usize> Not for Mask<T, LANES>
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
type Output = Mask<T, LANES>
!
operator.
fn not(self) -> <Mask<T, LANES> as Not>::Output
!
operation. Read more
impl<T, const LANES: usize> PartialEq for Mask<T, LANES>
where
T: MaskElement + PartialEq,
LaneCount<LANES>: SupportedLaneCount,
fn eq(&self, other: &Mask<T, LANES>) -> bool
self
and other
values to be equal, and is used by ==
.
fn ne(&self, other: &Rhs) -> bool
!=
. The default implementation is almost always sufficient, and should not be overridden without very good reason.
impl<T, const LANES: usize> PartialOrd for Mask<T, LANES>
where
T: MaskElement + PartialOrd,
LaneCount<LANES>: SupportedLaneCount,
fn partial_cmp(&self, other: &Mask<T, LANES>) -> Option<Ordering>
fn lt(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read more
fn gt(&self, other: &Rhs) -> bool
fn ge(&self, other: &Rhs) -> bool
self
and other
) and is used by the >=
operator. Read more
impl<const LANES: usize> SimdOrd for Mask<i16, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn simd_max(self, other: Mask<i16, LANES>) -> Mask<i16, LANES>
portable_simd
#86656)
other
.
fn simd_min(self, other: Mask<i16, LANES>) -> Mask<i16, LANES>
portable_simd
#86656)
other
.
fn simd_clamp(
self,
min: Mask<i16, LANES>,
max: Mask<i16, LANES>
) -> Mask<i16, LANES>
portable_simd
#86656)
impl<const LANES: usize> SimdOrd for Mask<i32, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn simd_max(self, other: Mask<i32, LANES>) -> Mask<i32, LANES>
portable_simd
#86656)
other
.
fn simd_min(self, other: Mask<i32, LANES>) -> Mask<i32, LANES>
portable_simd
#86656)
other
.
fn simd_clamp(
self,
min: Mask<i32, LANES>,
max: Mask<i32, LANES>
) -> Mask<i32, LANES>
portable_simd
#86656)
impl<const LANES: usize> SimdOrd for Mask<i64, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn simd_max(self, other: Mask<i64, LANES>) -> Mask<i64, LANES>
portable_simd
#86656)
other
.
fn simd_min(self, other: Mask<i64, LANES>) -> Mask<i64, LANES>
portable_simd
#86656)
other
.
fn simd_clamp(
self,
min: Mask<i64, LANES>,
max: Mask<i64, LANES>
) -> Mask<i64, LANES>
portable_simd
#86656)
impl<const LANES: usize> SimdOrd for Mask<i8, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn simd_max(self, other: Mask<i8, LANES>) -> Mask<i8, LANES>
portable_simd
#86656)
other
.
fn simd_min(self, other: Mask<i8, LANES>) -> Mask<i8, LANES>
portable_simd
#86656)
other
.
fn simd_clamp(
self,
min: Mask<i8, LANES>,
max: Mask<i8, LANES>
) -> Mask<i8, LANES>
portable_simd
#86656)
impl<const LANES: usize> SimdOrd for Mask<isize, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn simd_max(self, other: Mask<isize, LANES>) -> Mask<isize, LANES>
portable_simd
#86656)
other
.
fn simd_min(self, other: Mask<isize, LANES>) -> Mask<isize, LANES>
portable_simd
#86656)
other
.
fn simd_clamp(
self,
min: Mask<isize, LANES>,
max: Mask<isize, LANES>
) -> Mask<isize, LANES>
portable_simd
#86656)
impl<const LANES: usize> SimdPartialEq for Mask<i16, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
type Mask = Mask<i16, LANES>
portable_simd
#86656)
fn simd_eq(
self,
other: Mask<i16, LANES>
) -> <Mask<i16, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
fn simd_ne(
self,
other: Mask<i16, LANES>
) -> <Mask<i16, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
impl<const LANES: usize> SimdPartialEq for Mask<i32, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
type Mask = Mask<i32, LANES>
portable_simd
#86656)
fn simd_eq(
self,
other: Mask<i32, LANES>
) -> <Mask<i32, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
fn simd_ne(
self,
other: Mask<i32, LANES>
) -> <Mask<i32, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
impl<const LANES: usize> SimdPartialEq for Mask<i64, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
type Mask = Mask<i64, LANES>
portable_simd
#86656)
fn simd_eq(
self,
other: Mask<i64, LANES>
) -> <Mask<i64, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
fn simd_ne(
self,
other: Mask<i64, LANES>
) -> <Mask<i64, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
impl<const LANES: usize> SimdPartialEq for Mask<i8, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
type Mask = Mask<i8, LANES>
portable_simd
#86656)
fn simd_eq(
self,
other: Mask<i8, LANES>
) -> <Mask<i8, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
fn simd_ne(
self,
other: Mask<i8, LANES>
) -> <Mask<i8, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
impl<const LANES: usize> SimdPartialEq for Mask<isize, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
type Mask = Mask<isize, LANES>
portable_simd
#86656)
fn simd_eq(
self,
other: Mask<isize, LANES>
) -> <Mask<isize, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
fn simd_ne(
self,
other: Mask<isize, LANES>
) -> <Mask<isize, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
impl<const LANES: usize> SimdPartialOrd for Mask<i16, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn simd_lt(
self,
other: Mask<i16, LANES>
) -> <Mask<i16, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
fn simd_le(
self,
other: Mask<i16, LANES>
) -> <Mask<i16, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
fn simd_gt(
self,
other: Mask<i16, LANES>
) -> <Mask<i16, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
fn simd_ge(
self,
other: Mask<i16, LANES>
) -> <Mask<i16, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
impl<const LANES: usize> SimdPartialOrd for Mask<i32, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn simd_lt(
self,
other: Mask<i32, LANES>
) -> <Mask<i32, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
fn simd_le(
self,
other: Mask<i32, LANES>
) -> <Mask<i32, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
fn simd_gt(
self,
other: Mask<i32, LANES>
) -> <Mask<i32, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
fn simd_ge(
self,
other: Mask<i32, LANES>
) -> <Mask<i32, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
impl<const LANES: usize> SimdPartialOrd for Mask<i64, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn simd_lt(
self,
other: Mask<i64, LANES>
) -> <Mask<i64, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
fn simd_le(
self,
other: Mask<i64, LANES>
) -> <Mask<i64, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
fn simd_gt(
self,
other: Mask<i64, LANES>
) -> <Mask<i64, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
fn simd_ge(
self,
other: Mask<i64, LANES>
) -> <Mask<i64, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
impl<const LANES: usize> SimdPartialOrd for Mask<i8, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn simd_lt(
self,
other: Mask<i8, LANES>
) -> <Mask<i8, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
fn simd_le(
self,
other: Mask<i8, LANES>
) -> <Mask<i8, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
fn simd_gt(
self,
other: Mask<i8, LANES>
) -> <Mask<i8, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
fn simd_ge(
self,
other: Mask<i8, LANES>
) -> <Mask<i8, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
impl<const LANES: usize> SimdPartialOrd for Mask<isize, LANES>
where
LaneCount<LANES>: SupportedLaneCount,
fn simd_lt(
self,
other: Mask<isize, LANES>
) -> <Mask<isize, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
fn simd_le(
self,
other: Mask<isize, LANES>
) -> <Mask<isize, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
fn simd_gt(
self,
other: Mask<isize, LANES>
) -> <Mask<isize, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
fn simd_ge(
self,
other: Mask<isize, LANES>
) -> <Mask<isize, LANES> as SimdPartialEq>::Mask
portable_simd
#86656)
other
.
impl<T> ToBitMask for Mask<T, 1>
where
T: MaskElement,
type BitMask = u8
portable_simd
#86656)
fn to_bitmask(self) -> u8
portable_simd
#86656)
fn from_bitmask(bitmask: u8) -> Mask<T, 1>
portable_simd
#86656)
impl<T> ToBitMask for Mask<T, 16>
where
T: MaskElement,
type BitMask = u16
portable_simd
#86656)
fn to_bitmask(self) -> u16
portable_simd
#86656)
fn from_bitmask(bitmask: u16) -> Mask<T, 16>
portable_simd
#86656)
impl<T> ToBitMask for Mask<T, 2>
where
T: MaskElement,
type BitMask = u8
portable_simd
#86656)
fn to_bitmask(self) -> u8
portable_simd
#86656)
fn from_bitmask(bitmask: u8) -> Mask<T, 2>
portable_simd
#86656)
impl<T> ToBitMask for Mask<T, 32>
where
T: MaskElement,
type BitMask = u32
portable_simd
#86656)
fn to_bitmask(self) -> u32
portable_simd
#86656)
fn from_bitmask(bitmask: u32) -> Mask<T, 32>
portable_simd
#86656)
impl<T> ToBitMask for Mask<T, 4>
where
T: MaskElement,
type BitMask = u8
portable_simd
#86656)
fn to_bitmask(self) -> u8
portable_simd
#86656)
fn from_bitmask(bitmask: u8) -> Mask<T, 4>
portable_simd
#86656)
impl<T> ToBitMask for Mask<T, 64>
where
T: MaskElement,
type BitMask = u64
portable_simd
#86656)
fn to_bitmask(self) -> u64
portable_simd
#86656)
fn from_bitmask(bitmask: u64) -> Mask<T, 64>
portable_simd
#86656)
impl<T> ToBitMask for Mask<T, 8>
where
T: MaskElement,
type BitMask = u8
portable_simd
#86656)
fn to_bitmask(self) -> u8
portable_simd
#86656)
fn from_bitmask(bitmask: u8) -> Mask<T, 8>
portable_simd
#86656)
impl<T, const LANES: usize> Copy for Mask<T, LANES>
where
T: MaskElement,
LaneCount<LANES>: SupportedLaneCount,
Auto Trait Implementations
impl<T, const LANES: usize> RefUnwindSafe for Mask<T, LANES>
where
T: RefUnwindSafe,
impl<T, const LANES: usize> Send for Mask<T, LANES>
where
T: Send,
impl<T, const LANES: usize> Sync for Mask<T, LANES>
where
T: Sync,
impl<T, const LANES: usize> Unpin for Mask<T, LANES>
where
T: Unpin,
impl<T, const LANES: usize> UnwindSafe for Mask<T, LANES>
where
T: UnwindSafe,
Blanket Implementations
impl<T> Any for T
where
T: 'static + ?Sized,
impl<T> Borrow<T> for T
where
T: ?Sized,
impl<T> BorrowMut<T> for T
where
T: ?Sized,
impl<T> From<T> for T
fn from(t: T) -> T
Returns the argument unchanged.
impl<T, U> Into<U> for T
where
U: From<T>,
fn into(self) -> U
Calls U::from(self)
.
That is, this conversion is whatever the implementation of From<T> for U
chooses to do.
impl<T> ToOwned for T
where
T: Clone,
type Owned = T
fn to_owned(&self) -> T
fn clone_into(&self, target: &mut T)
impl<T, U> TryFrom<U> for T
where
U: Into<T>,
type Error = Infallible
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
impl<T, U> TryInto<U> for T
where
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
ยฉ 2010 The Rust Project Developers
Licensed under the Apache License, Version 2.0 or the MIT license, at your option.
https://doc.rust-lang.org/std/simd/prelude/struct.Mask.html