pub trait TrigOps: Sized + Div<Output = Self> {
Show 16 methods fn sin_cos(&self) -> (Self, Self);
fn sinh_cosh(&self) -> (Self, Self);
fn asin(&self) -> Self;
fn acos(&self) -> Self;
fn atan(&self) -> Self;
fn asinh(&self) -> Self;
fn acosh(&self) -> Self;
fn atanh(&self) -> Self; fn sin(&self) -> Self { ... }
fn cos(&self) -> Self { ... }
fn tan(&self) -> Self { ... }
fn sinh(&self) -> Self { ... }
fn cosh(&self) -> Self { ... }
fn tanh(&self) -> Self { ... }
fn asin_acos(&self) -> (Self, Self) { ... }
fn asinh_acosh(&self) -> (Self, Self) { ... }
}

Required methods

Provided methods

Implementations on Foreign Types

Implementors