pub type Mask2U<T> = Mask<2, T, Unaligned>;Expand description
A 2-component vector mask.
To initialize this type use Mask2U::new.
§No SIMD Alignment
This type is not SIMD-aligned and has the memory layout of [bool; 2].
Aliased Type§
pub struct Mask2U<T>(/* private fields */);