#[repr(C, align(32))]pub struct f32x8 { /* private fields */ }
Implementations
sourceimpl f32x8
impl f32x8
pub const ONE: f32x8
pub const HALF: f32x8
pub const ZERO: f32x8
pub const E: f32x8
pub const FRAC_1_PI: f32x8
pub const FRAC_2_PI: f32x8
pub const FRAC_2_SQRT_PI: f32x8
pub const FRAC_1_SQRT_2: f32x8
pub const FRAC_PI_2: f32x8
pub const FRAC_PI_3: f32x8
pub const FRAC_PI_4: f32x8
pub const FRAC_PI_6: f32x8
pub const FRAC_PI_8: f32x8
pub const LN_2: f32x8
pub const LN_10: f32x8
pub const LOG2_E: f32x8
pub const LOG10_E: f32x8
pub const LOG10_2: f32x8
pub const LOG2_10: f32x8
pub const PI: f32x8
pub const SQRT_2: f32x8
pub const TAU: f32x8
sourceimpl f32x8
impl f32x8
pub fn new(array: [f32; 8]) -> Self
pub fn blend(self, t: Self, f: Self) -> Self
pub fn abs(self) -> Self
sourcepub fn fast_max(self, rhs: Self) -> Self
pub fn fast_max(self, rhs: Self) -> Self
Calculates the lanewise maximum of both vectors. This is a faster
implementation than max
, but it doesn’t specify any behavior if NaNs are
involved.
sourcepub fn max(self, rhs: Self) -> Self
pub fn max(self, rhs: Self) -> Self
Calculates the lanewise maximum of both vectors. This doesn’t match
IEEE-754 and instead is defined as self < rhs ? rhs : self
.
sourcepub fn fast_min(self, rhs: Self) -> Self
pub fn fast_min(self, rhs: Self) -> Self
Calculates the lanewise minimum of both vectors. This is a faster
implementation than min
, but it doesn’t specify any behavior if NaNs are
involved.
sourcepub fn min(self, rhs: Self) -> Self
pub fn min(self, rhs: Self) -> Self
Calculates the lanewise minimum of both vectors. If either lane is NaN,
the other lane gets chosen. Use fast_min
for a faster implementation
that doesn’t handle NaNs.
pub fn is_nan(self) -> Self
pub fn is_finite(self) -> Self
pub fn is_inf(self) -> Self
pub fn round(self) -> Self
sourcepub fn fast_round_int(self) -> i32x8
pub fn fast_round_int(self) -> i32x8
Rounds each lane into an integer. This is a faster implementation than
round_int
, but it doesn’t handle out of range values or NaNs. For those
values you get implementation defined behavior.
sourcepub fn round_int(self) -> i32x8
pub fn round_int(self) -> i32x8
Rounds each lane into an integer. This saturates out of range values and
turns NaNs into 0. Use fast_round_int
for a faster implementation that
doesn’t handle out of range values or NaNs.
sourcepub fn fast_trunc_int(self) -> i32x8
pub fn fast_trunc_int(self) -> i32x8
Truncates each lane into an integer. This is a faster implementation than
trunc_int
, but it doesn’t handle out of range values or NaNs. For those
values you get implementation defined behavior.
sourcepub fn trunc_int(self) -> i32x8
pub fn trunc_int(self) -> i32x8
Truncates each lane into an integer. This saturates out of range values
and turns NaNs into 0. Use fast_trunc_int
for a faster implementation
that doesn’t handle out of range values or NaNs.
pub fn mul_add(self, m: Self, a: Self) -> Self
pub fn mul_sub(self, m: Self, a: Self) -> Self
pub fn mul_neg_add(self, m: Self, a: Self) -> Self
pub fn mul_neg_sub(self, m: Self, a: Self) -> Self
pub fn flip_signs(self, signs: Self) -> Self
pub fn copysign(self, sign: Self) -> Self
pub fn asin_acos(self) -> (Self, Self)
pub fn asin(self) -> Self
pub fn acos(self) -> Self
pub fn atan(self) -> Self
pub fn atan2(self, x: Self) -> Self
pub fn sin_cos(self) -> (Self, Self)
pub fn sin(self) -> Self
pub fn cos(self) -> Self
pub fn tan(self) -> Self
pub fn to_degrees(self) -> Self
pub fn to_radians(self) -> Self
pub fn recip(self) -> Self
pub fn recip_sqrt(self) -> Self
pub fn sqrt(self) -> Self
pub fn move_mask(self) -> i32
pub fn any(self) -> bool
pub fn all(self) -> bool
pub fn none(self) -> bool
pub fn sign_bit(self) -> Self
pub fn reduce_add(self) -> f32
pub fn log2(self) -> Self
pub fn log10(self) -> Self
pub fn pow_f32x8(self, y: Self) -> Self
pub fn powf(self, y: f32) -> Self
pub fn to_array(self) -> [f32; 8]
pub fn as_array_ref(&self) -> &[f32; 8]
Trait Implementations
sourceimpl AddAssign<&'_ f32x8> for f32x8
impl AddAssign<&'_ f32x8> for f32x8
sourcefn add_assign(&mut self, rhs: &Self)
fn add_assign(&mut self, rhs: &Self)
Performs the +=
operation. Read more
sourceimpl AddAssign<f32x8> for f32x8
impl AddAssign<f32x8> for f32x8
sourcefn add_assign(&mut self, rhs: Self)
fn add_assign(&mut self, rhs: Self)
Performs the +=
operation. Read more
sourceimpl BitAndAssign<&'_ f32x8> for f32x8
impl BitAndAssign<&'_ f32x8> for f32x8
sourcefn bitand_assign(&mut self, rhs: &Self)
fn bitand_assign(&mut self, rhs: &Self)
Performs the &=
operation. Read more
sourceimpl BitAndAssign<f32x8> for f32x8
impl BitAndAssign<f32x8> for f32x8
sourcefn bitand_assign(&mut self, rhs: Self)
fn bitand_assign(&mut self, rhs: Self)
Performs the &=
operation. Read more
sourceimpl BitOrAssign<&'_ f32x8> for f32x8
impl BitOrAssign<&'_ f32x8> for f32x8
sourcefn bitor_assign(&mut self, rhs: &Self)
fn bitor_assign(&mut self, rhs: &Self)
Performs the |=
operation. Read more
sourceimpl BitOrAssign<f32x8> for f32x8
impl BitOrAssign<f32x8> for f32x8
sourcefn bitor_assign(&mut self, rhs: Self)
fn bitor_assign(&mut self, rhs: Self)
Performs the |=
operation. Read more
sourceimpl BitXorAssign<&'_ f32x8> for f32x8
impl BitXorAssign<&'_ f32x8> for f32x8
sourcefn bitxor_assign(&mut self, rhs: &Self)
fn bitxor_assign(&mut self, rhs: &Self)
Performs the ^=
operation. Read more
sourceimpl BitXorAssign<f32x8> for f32x8
impl BitXorAssign<f32x8> for f32x8
sourcefn bitxor_assign(&mut self, rhs: Self)
fn bitxor_assign(&mut self, rhs: Self)
Performs the ^=
operation. Read more
sourceimpl DivAssign<&'_ f32x8> for f32x8
impl DivAssign<&'_ f32x8> for f32x8
sourcefn div_assign(&mut self, rhs: &Self)
fn div_assign(&mut self, rhs: &Self)
Performs the /=
operation. Read more
sourceimpl DivAssign<f32x8> for f32x8
impl DivAssign<f32x8> for f32x8
sourcefn div_assign(&mut self, rhs: Self)
fn div_assign(&mut self, rhs: Self)
Performs the /=
operation. Read more
sourceimpl MulAssign<&'_ f32x8> for f32x8
impl MulAssign<&'_ f32x8> for f32x8
sourcefn mul_assign(&mut self, rhs: &Self)
fn mul_assign(&mut self, rhs: &Self)
Performs the *=
operation. Read more
sourceimpl MulAssign<f32x8> for f32x8
impl MulAssign<f32x8> for f32x8
sourcefn mul_assign(&mut self, rhs: Self)
fn mul_assign(&mut self, rhs: Self)
Performs the *=
operation. Read more
sourceimpl SubAssign<&'_ f32x8> for f32x8
impl SubAssign<&'_ f32x8> for f32x8
sourcefn sub_assign(&mut self, rhs: &Self)
fn sub_assign(&mut self, rhs: &Self)
Performs the -=
operation. Read more
sourceimpl SubAssign<f32x8> for f32x8
impl SubAssign<f32x8> for f32x8
sourcefn sub_assign(&mut self, rhs: Self)
fn sub_assign(&mut self, rhs: Self)
Performs the -=
operation. Read more
impl Copy for f32x8
impl Pod for f32x8
impl StructuralPartialEq for f32x8
Auto Trait Implementations
impl RefUnwindSafe for f32x8
impl Send for f32x8
impl Sync for f32x8
impl Unpin for f32x8
impl UnwindSafe for f32x8
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more