pub trait ATrigH {
type Output;
// Required methods
fn asinh(self) -> Self::Output;
fn acosh(self) -> Self::Output;
fn atanh(self) -> Self::Output;
fn acoth(self) -> Self::Output;
}pub trait ATrigH {
type Output;
// Required methods
fn asinh(self) -> Self::Output;
fn acosh(self) -> Self::Output;
fn atanh(self) -> Self::Output;
fn acoth(self) -> Self::Output;
}