pub trait Sin {
type Output;
// Required method
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.
Sine of a Record by reference.
Operation for a record by value.
Sine of a Trace by reference.
Operation for a trace by value.