[][src]Struct wide::i32x4

#[repr(C, align(16))]pub struct i32x4 { /* fields omitted */ }

Four i32 values packed together.

Methods

impl i32x4[src]

pub const MAX: i32x4[src]

Maximum i32 value.

pub const MIN: i32x4[src]

Minimum i32 value.

pub const ZERO: i32x4[src]

0

pub const ONE: i32x4[src]

1

impl i32x4[src]

#[must_use]pub fn cmp_eq(self, rhs: Self) -> Self[src]

Lanewise ==

#[must_use]pub fn cmp_gt(self, rhs: Self) -> Self[src]

Lanewise >

impl i32x4[src]

#[must_use]pub fn new(a: i32, b: i32, c: i32, d: i32) -> Self[src]

Make a new i32x4

impl i32x4[src]

#[must_use]pub fn cast_f32x4(self) -> f32x4[src]

Cast directly to f32x4 (no bit change).

Trait Implementations

impl Add<i32x4> for i32x4[src]

type Output = Self

The resulting type after applying the + operator.

impl BitAnd<i32x4> for i32x4[src]

type Output = Self

The resulting type after applying the & operator.

impl BitAndAssign<i32x4> for i32x4[src]

impl BitOr<i32x4> for i32x4[src]

type Output = Self

The resulting type after applying the | operator.

impl BitOrAssign<i32x4> for i32x4[src]

impl BitXor<i32x4> for i32x4[src]

type Output = Self

The resulting type after applying the ^ operator.

impl Clone for i32x4[src]

impl Copy for i32x4[src]

impl Default for i32x4[src]

impl From<i32> for i32x4[src]

impl Index<usize> for i32x4[src]

type Output = i32

The returned type after indexing.

impl Not for i32x4[src]

type Output = Self

The resulting type after applying the ! operator.

impl Pod for i32x4[src]

impl Shl<i32> for i32x4[src]

type Output = Self

The resulting type after applying the << operator.

impl Zeroable for i32x4[src]

Auto Trait Implementations

impl Send for i32x4

impl Sync for i32x4

impl Unpin for i32x4

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.