Trait acme_core::ops::unary::Sin

source ·
pub trait Sin {
    type Output;

    // Required method
    fn sin(self) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn sin(self) -> Self::Output

Implementations on Foreign Types§

source§

impl Sin for f32

§

type Output = f32

source§

fn sin(self) -> Self::Output

source§

impl Sin for f64

§

type Output = f64

source§

fn sin(self) -> Self::Output

source§

impl Sin for Complex<f32>

§

type Output = Complex<f32>

source§

fn sin(self) -> Self::Output

source§

impl Sin for Complex<f64>

§

type Output = Complex<f64>

source§

fn sin(self) -> Self::Output

Implementors§