Struct std::simd::f32x4
[−]
[src]
#[repr(simd)]pub struct f32x4(_, _, _, _);
Methods
impl f32x4[src]
pub const fn new(x0: f32, x1: f32, x2: f32, x3: f32) -> f32x4[src]
pub fn len() -> i32[src]
pub const fn splat(value: f32) -> f32x4[src]
pub fn extract(self, idx: u32) -> f32[src]
pub unsafe fn extract_unchecked(self, idx: u32) -> f32[src]
pub fn replace(self, idx: u32, val: f32) -> f32x4[src]
pub unsafe fn replace_unchecked(self, idx: u32, val: f32) -> f32x4[src]
pub fn store(self, slice: &mut [f32], offset: usize)[src]
pub unsafe fn store_unchecked(self, slice: &mut [f32], offset: usize)[src]
pub fn load(slice: &[f32], offset: usize) -> f32x4[src]
pub unsafe fn load_unchecked(slice: &[f32], offset: usize) -> f32x4[src]
pub fn eq(self, other: f32x4) -> i32x4[src]
pub fn ne(self, other: f32x4) -> i32x4[src]
pub fn lt(self, other: f32x4) -> i32x4[src]
pub fn le(self, other: f32x4) -> i32x4[src]
pub fn gt(self, other: f32x4) -> i32x4[src]
pub fn ge(self, other: f32x4) -> i32x4[src]
impl f32x4[src]
impl f32x4[src]
impl f32x4[src]
Trait Implementations
impl Div<f32x4> for f32x4[src]
type Output = f32x4
The resulting type after applying the / operator.
fn div(self, other: f32x4) -> f32x4[src]
Performs the / operation.
impl Add<f32x4> for f32x4[src]
type Output = f32x4
The resulting type after applying the + operator.
fn add(self, other: f32x4) -> f32x4[src]
Performs the + operation.
impl Copy for f32x4[src]
impl RemAssign<f32x4> for f32x4[src]
fn rem_assign(&mut self, other: f32x4)[src]
Performs the %= operation.
impl DivAssign<f32x4> for f32x4[src]
fn div_assign(&mut self, other: f32x4)[src]
Performs the /= operation.
impl MulAssign<f32x4> for f32x4[src]
fn mul_assign(&mut self, other: f32x4)[src]
Performs the *= operation.
impl SubAssign<f32x4> for f32x4[src]
fn sub_assign(&mut self, other: f32x4)[src]
Performs the -= operation.
impl AddAssign<f32x4> for f32x4[src]
fn add_assign(&mut self, other: f32x4)[src]
Performs the += operation.
impl Neg for f32x4[src]
type Output = f32x4
The resulting type after applying the - operator.
fn neg(self) -> f32x4[src]
Performs the unary - operation.
impl Sub<f32x4> for f32x4[src]
type Output = f32x4
The resulting type after applying the - operator.
fn sub(self, other: f32x4) -> f32x4[src]
Performs the - operation.
impl Clone for f32x4[src]
fn clone(&self) -> f32x4[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Rem<f32x4> for f32x4[src]
type Output = f32x4
The resulting type after applying the % operator.
fn rem(self, other: f32x4) -> f32x4[src]
Performs the % operation.
impl Debug for f32x4[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter. Read more
impl Mul<f32x4> for f32x4[src]
type Output = f32x4
The resulting type after applying the * operator.
fn mul(self, other: f32x4) -> f32x4[src]
Performs the * operation.