[][src]Trait easy_ml::numeric::extra::Sin

pub trait Sin {
    type Output;
    fn sin(self) -> Self::Output;
}

A type which can compute the sine of itself: sin(self)

This is implemented by f32 and f64 by value and by reference.

Associated Types

type Output

Loading content...

Required methods

fn sin(self) -> Self::Output

Loading content...

Implementations on Foreign Types

impl Sin for f32[src]

type Output = f32

impl<'_> Sin for &'_ f32[src]

type Output = f32

impl Sin for f64[src]

type Output = f64

impl<'_> Sin for &'_ f64[src]

type Output = f64

Loading content...

Implementors

Loading content...