Trait rin::math::simd::SimdSigned [−][src]
pub trait SimdSigned: SimdValue { pub fn simd_abs(&self) -> Self; pub fn simd_abs_sub(&self, other: &Self) -> Self; pub fn simd_signum(&self) -> Self; pub fn is_simd_positive(&self) -> Self::SimdBool; pub fn is_simd_negative(&self) -> Self::SimdBool; }
A lane-wise generalization of num::Signed
for SIMD values.
Required methods
pub fn simd_abs(&self) -> Self
[src]
The absolute value of each lane of self
.
pub fn simd_abs_sub(&self, other: &Self) -> Self
[src]
The absolute difference of each lane of self
.
For each lane, this zero if the lane of self is less than or equal to the corresponding lane of other otherwise the difference between the lane of self and the lane of other is returned.
pub fn simd_signum(&self) -> Self
[src]
The signum of each lane of Self
.
pub fn is_simd_positive(&self) -> Self::SimdBool
[src]
Tests which lane is positive.
pub fn is_simd_negative(&self) -> Self::SimdBool
[src]
Tests which lane is negative.
Implementors
impl SimdSigned for AutoSimd<[f32; 2]>
[src]
impl SimdSigned for AutoSimd<[f32; 2]>
[src]pub fn simd_abs(&self) -> AutoSimd<[f32; 2]>
[src]
pub fn simd_abs_sub(&self, other: &AutoSimd<[f32; 2]>) -> AutoSimd<[f32; 2]>
[src]
pub fn simd_signum(&self) -> AutoSimd<[f32; 2]>
[src]
pub fn is_simd_positive(&self) -> <AutoSimd<[f32; 2]> as SimdValue>::SimdBool
[src]
pub fn is_simd_negative(&self) -> <AutoSimd<[f32; 2]> as SimdValue>::SimdBool
[src]
impl SimdSigned for AutoSimd<[f32; 4]>
[src]
impl SimdSigned for AutoSimd<[f32; 4]>
[src]pub fn simd_abs(&self) -> AutoSimd<[f32; 4]>
[src]
pub fn simd_abs_sub(&self, other: &AutoSimd<[f32; 4]>) -> AutoSimd<[f32; 4]>
[src]
pub fn simd_signum(&self) -> AutoSimd<[f32; 4]>
[src]
pub fn is_simd_positive(&self) -> <AutoSimd<[f32; 4]> as SimdValue>::SimdBool
[src]
pub fn is_simd_negative(&self) -> <AutoSimd<[f32; 4]> as SimdValue>::SimdBool
[src]
impl SimdSigned for AutoSimd<[f32; 8]>
[src]
impl SimdSigned for AutoSimd<[f32; 8]>
[src]pub fn simd_abs(&self) -> AutoSimd<[f32; 8]>
[src]
pub fn simd_abs_sub(&self, other: &AutoSimd<[f32; 8]>) -> AutoSimd<[f32; 8]>
[src]
pub fn simd_signum(&self) -> AutoSimd<[f32; 8]>
[src]
pub fn is_simd_positive(&self) -> <AutoSimd<[f32; 8]> as SimdValue>::SimdBool
[src]
pub fn is_simd_negative(&self) -> <AutoSimd<[f32; 8]> as SimdValue>::SimdBool
[src]
impl SimdSigned for AutoSimd<[f32; 16]>
[src]
impl SimdSigned for AutoSimd<[f32; 16]>
[src]pub fn simd_abs(&self) -> AutoSimd<[f32; 16]>
[src]
pub fn simd_abs_sub(&self, other: &AutoSimd<[f32; 16]>) -> AutoSimd<[f32; 16]>
[src]
pub fn simd_signum(&self) -> AutoSimd<[f32; 16]>
[src]
pub fn is_simd_positive(&self) -> <AutoSimd<[f32; 16]> as SimdValue>::SimdBool
[src]
pub fn is_simd_negative(&self) -> <AutoSimd<[f32; 16]> as SimdValue>::SimdBool
[src]
impl SimdSigned for AutoSimd<[f64; 2]>
[src]
impl SimdSigned for AutoSimd<[f64; 2]>
[src]pub fn simd_abs(&self) -> AutoSimd<[f64; 2]>
[src]
pub fn simd_abs_sub(&self, other: &AutoSimd<[f64; 2]>) -> AutoSimd<[f64; 2]>
[src]
pub fn simd_signum(&self) -> AutoSimd<[f64; 2]>
[src]
pub fn is_simd_positive(&self) -> <AutoSimd<[f64; 2]> as SimdValue>::SimdBool
[src]
pub fn is_simd_negative(&self) -> <AutoSimd<[f64; 2]> as SimdValue>::SimdBool
[src]
impl SimdSigned for AutoSimd<[f64; 4]>
[src]
impl SimdSigned for AutoSimd<[f64; 4]>
[src]pub fn simd_abs(&self) -> AutoSimd<[f64; 4]>
[src]
pub fn simd_abs_sub(&self, other: &AutoSimd<[f64; 4]>) -> AutoSimd<[f64; 4]>
[src]
pub fn simd_signum(&self) -> AutoSimd<[f64; 4]>
[src]
pub fn is_simd_positive(&self) -> <AutoSimd<[f64; 4]> as SimdValue>::SimdBool
[src]
pub fn is_simd_negative(&self) -> <AutoSimd<[f64; 4]> as SimdValue>::SimdBool
[src]
impl SimdSigned for AutoSimd<[f64; 8]>
[src]
impl SimdSigned for AutoSimd<[f64; 8]>
[src]pub fn simd_abs(&self) -> AutoSimd<[f64; 8]>
[src]
pub fn simd_abs_sub(&self, other: &AutoSimd<[f64; 8]>) -> AutoSimd<[f64; 8]>
[src]
pub fn simd_signum(&self) -> AutoSimd<[f64; 8]>
[src]
pub fn is_simd_positive(&self) -> <AutoSimd<[f64; 8]> as SimdValue>::SimdBool
[src]
pub fn is_simd_negative(&self) -> <AutoSimd<[f64; 8]> as SimdValue>::SimdBool
[src]
impl<T> SimdSigned for T where
T: Signed + SimdValue<SimdBool = bool>,
[src]
impl<T> SimdSigned for T where
T: Signed + SimdValue<SimdBool = bool>,
[src]