Struct coresimd::simd::f64x8
[−]
[src]
#[repr(simd)]pub struct f64x8(_, _, _, _, _, _, _, _);
Methods
impl f64x8[src]
pub const fn new(
x0: f64,
x1: f64,
x2: f64,
x3: f64,
x4: f64,
x5: f64,
x6: f64,
x7: f64
) -> f64x8[src]
x0: f64,
x1: f64,
x2: f64,
x3: f64,
x4: f64,
x5: f64,
x6: f64,
x7: f64
) -> f64x8
pub fn len() -> i32[src]
pub fn splat(value: f64) -> f64x8[src]
pub fn extract(self, idx: u32) -> f64[src]
pub unsafe fn extract_unchecked(self, idx: u32) -> f64[src]
pub fn replace(self, idx: u32, val: f64) -> f64x8[src]
pub unsafe fn replace_unchecked(self, idx: u32, val: f64) -> f64x8[src]
pub fn store(self, slice: &mut [f64], offset: usize)[src]
pub unsafe fn store_unchecked(self, slice: &mut [f64], offset: usize)[src]
pub fn load(slice: &[f64], offset: usize) -> f64x8[src]
pub unsafe fn load_unchecked(slice: &[f64], offset: usize) -> f64x8[src]
pub fn eq(self, other: f64x8) -> i64x8[src]
pub fn ne(self, other: f64x8) -> i64x8[src]
pub fn lt(self, other: f64x8) -> i64x8[src]
pub fn le(self, other: f64x8) -> i64x8[src]
pub fn gt(self, other: f64x8) -> i64x8[src]
pub fn ge(self, other: f64x8) -> i64x8[src]
impl f64x8[src]
impl f64x8[src]
impl f64x8[src]
Trait Implementations
impl Clone for f64x8[src]
fn clone(&self) -> f64x8[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 Copy for f64x8[src]
impl Debug for f64x8[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl PartialEq for f64x8[src]
fn eq(&self, __arg_0: &f64x8) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &f64x8) -> bool[src]
This method tests for !=.
impl Add for f64x8[src]
type Output = Self
The resulting type after applying the + operator.
fn add(self, other: Self) -> Self[src]
Performs the + operation.
impl Sub for f64x8[src]
type Output = Self
The resulting type after applying the - operator.
fn sub(self, other: Self) -> Self[src]
Performs the - operation.
impl Mul for f64x8[src]
type Output = Self
The resulting type after applying the * operator.
fn mul(self, other: Self) -> Self[src]
Performs the * operation.
impl Div for f64x8[src]
type Output = Self
The resulting type after applying the / operator.
fn div(self, other: Self) -> Self[src]
Performs the / operation.
impl Rem for f64x8[src]
type Output = Self
The resulting type after applying the % operator.
fn rem(self, other: Self) -> Self[src]
Performs the % operation.
impl AddAssign for f64x8[src]
fn add_assign(&mut self, other: Self)[src]
Performs the += operation.
impl SubAssign for f64x8[src]
fn sub_assign(&mut self, other: Self)[src]
Performs the -= operation.
impl MulAssign for f64x8[src]
fn mul_assign(&mut self, other: Self)[src]
Performs the *= operation.
impl DivAssign for f64x8[src]
fn div_assign(&mut self, other: Self)[src]
Performs the /= operation.
impl RemAssign for f64x8[src]
fn rem_assign(&mut self, other: Self)[src]
Performs the %= operation.