Trait hagane_simd::scalar::FloatScalar [] [src]

pub trait FloatScalar: Scalar {
    fn sqrt(x: Self) -> Self;
    fn fract(x: Self) -> Self;
    fn ceil(x: Self) -> Self;
    fn floor(x: Self) -> Self;
    fn trunc(x: Self) -> Self;
    fn sin(x: Self) -> Self;
    fn cos(x: Self) -> Self;
}

Required Methods

Implementors