pub struct MaskW(pub [bool; 4]);Expand description
Comparison mask, one boolean per lane. The C code represents masks as
all-ones / all-zero float bit patterns and blends with bitwise and/or; a
per-lane boolean with a select blend is behaviorally identical.
Tuple Fields§
§0: [bool; 4]Implementations§
Trait Implementations§
impl Copy for MaskW
impl StructuralPartialEq for MaskW
Auto Trait Implementations§
impl Freeze for MaskW
impl RefUnwindSafe for MaskW
impl Send for MaskW
impl Sync for MaskW
impl Unpin for MaskW
impl UnsafeUnpin for MaskW
impl UnwindSafe for MaskW
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more