Struct std::simd::f32x16
[−]
[src]
#[repr(simd)]pub struct f32x16(_, _, _, _, _, _, _, _, _, _, _, _, _, _, _, _);
Methods
impl f32x16[src]
pub const fn new(
x0: f32,
x1: f32,
x2: f32,
x3: f32,
x4: f32,
x5: f32,
x6: f32,
x7: f32,
x8: f32,
x9: f32,
x10: f32,
x11: f32,
x12: f32,
x13: f32,
x14: f32,
x15: f32
) -> f32x16[src]
x0: f32,
x1: f32,
x2: f32,
x3: f32,
x4: f32,
x5: f32,
x6: f32,
x7: f32,
x8: f32,
x9: f32,
x10: f32,
x11: f32,
x12: f32,
x13: f32,
x14: f32,
x15: f32
) -> f32x16
pub fn len() -> i32[src]
pub const fn splat(value: f32) -> f32x16[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) -> f32x16[src]
pub unsafe fn replace_unchecked(self, idx: u32, val: f32) -> f32x16[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) -> f32x16[src]
pub unsafe fn load_unchecked(slice: &[f32], offset: usize) -> f32x16[src]
pub fn eq(self, other: f32x16) -> i32x16[src]
pub fn ne(self, other: f32x16) -> i32x16[src]
pub fn lt(self, other: f32x16) -> i32x16[src]
pub fn le(self, other: f32x16) -> i32x16[src]
pub fn gt(self, other: f32x16) -> i32x16[src]
pub fn ge(self, other: f32x16) -> i32x16[src]
impl f32x16[src]
impl f32x16[src]
Trait Implementations
impl Div<f32x16> for f32x16[src]
type Output = f32x16
The resulting type after applying the / operator.
fn div(self, other: f32x16) -> f32x16[src]
Performs the / operation.
impl Add<f32x16> for f32x16[src]
type Output = f32x16
The resulting type after applying the + operator.
fn add(self, other: f32x16) -> f32x16[src]
Performs the + operation.
impl Copy for f32x16[src]
impl RemAssign<f32x16> for f32x16[src]
fn rem_assign(&mut self, other: f32x16)[src]
Performs the %= operation.
impl DivAssign<f32x16> for f32x16[src]
fn div_assign(&mut self, other: f32x16)[src]
Performs the /= operation.
impl MulAssign<f32x16> for f32x16[src]
fn mul_assign(&mut self, other: f32x16)[src]
Performs the *= operation.
impl SubAssign<f32x16> for f32x16[src]
fn sub_assign(&mut self, other: f32x16)[src]
Performs the -= operation.
impl AddAssign<f32x16> for f32x16[src]
fn add_assign(&mut self, other: f32x16)[src]
Performs the += operation.
impl Neg for f32x16[src]
type Output = f32x16
The resulting type after applying the - operator.
fn neg(self) -> f32x16[src]
Performs the unary - operation.
impl Sub<f32x16> for f32x16[src]
type Output = f32x16
The resulting type after applying the - operator.
fn sub(self, other: f32x16) -> f32x16[src]
Performs the - operation.
impl Clone for f32x16[src]
fn clone(&self) -> f32x16[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<f32x16> for f32x16[src]
type Output = f32x16
The resulting type after applying the % operator.
fn rem(self, other: f32x16) -> f32x16[src]
Performs the % operation.
impl Mul<f32x16> for f32x16[src]
type Output = f32x16
The resulting type after applying the * operator.
fn mul(self, other: f32x16) -> f32x16[src]
Performs the * operation.
impl Debug for f32x16[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result<(), Error>[src]
Formats the value using the given formatter. Read more