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

A type which can compute the cosine of itself: cos(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

Cosine of a Record by reference.

Operation for a record by value.

Cosine of a Trace by reference.

Operation for a trace by value.