Trait acme_core::ops::unary::Cos

source ·
pub trait Cos {
    type Output;

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

Required Associated Types§

Required Methods§

source

fn cos(self) -> Self::Output

Implementations on Foreign Types§

source§

impl Cos for f32

§

type Output = f32

source§

fn cos(self) -> Self::Output

source§

impl Cos for f64

§

type Output = f64

source§

fn cos(self) -> Self::Output

source§

impl Cos for Complex<f32>

§

type Output = Complex<f32>

source§

fn cos(self) -> Self::Output

source§

impl Cos for Complex<f64>

§

type Output = Complex<f64>

source§

fn cos(self) -> Self::Output

Implementors§