Type Alias Bool2
Source pub type Bool2 = Vec2<bool>;
Expand description
#[repr(C)]
pub struct Bool2 {
pub x: bool,
pub y: bool,
}
Returns true
if any of the components are true
.
Returns true
if all the components are true
.
Returns true
if none of the components are true
.
Combines two vectors based on the bools, selecting components from the left-hand side if true
and right-hand side if false
.