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

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

This is implemented by f32 and f64 by value and by reference, as well as Traces and Records of these.

Associated Types

Required methods

Implementations on Foreign Types

Implementors

Sine of a Record by reference.

Operation for a record by value.

Sine of a Trace by reference.

Operation for a trace by value.