Struct pathfinder_simd::x86::I32x2
source · pub struct I32x2(pub u64);
Tuple Fields§
§0: u64
Implementations§
source§impl I32x2
impl I32x2
pub fn new(a: i32, b: i32) -> I32x2
pub fn splat(x: i32) -> I32x2
pub fn x(self) -> i32
pub fn y(self) -> i32
pub fn concat_xy_xy(self, other: I32x2) -> I32x4
pub fn to_i32x4(self) -> I32x4
pub fn to_f32x4(self) -> F32x4
pub fn max(self, other: I32x2) -> I32x2
pub fn min(self, other: I32x2) -> I32x2
pub fn packed_eq(self, other: I32x2) -> U32x4
pub fn packed_gt(self, other: I32x2) -> U32x4
pub fn packed_le(self, other: I32x2) -> U32x4
Trait Implementations§
source§impl AddAssign for I32x2
impl AddAssign for I32x2
source§fn add_assign(&mut self, other: I32x2)
fn add_assign(&mut self, other: I32x2)
Performs the
+=
operation. Read moresource§impl MulAssign for I32x2
impl MulAssign for I32x2
source§fn mul_assign(&mut self, other: I32x2)
fn mul_assign(&mut self, other: I32x2)
Performs the
*=
operation. Read moresource§impl PartialEq for I32x2
impl PartialEq for I32x2
source§impl SubAssign for I32x2
impl SubAssign for I32x2
source§fn sub_assign(&mut self, other: I32x2)
fn sub_assign(&mut self, other: I32x2)
Performs the
-=
operation. Read moreimpl Copy for I32x2
Auto Trait Implementations§
impl Freeze for I32x2
impl RefUnwindSafe for I32x2
impl Send for I32x2
impl Sync for I32x2
impl Unpin for I32x2
impl UnwindSafe for I32x2
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