pub trait TensorAsinhAPI {
type Output;
// Required method
fn asinh_f(self) -> Result<Self::Output>;
// Provided method
fn asinh(self) -> Self::Output
where Self: Sized { ... }
}
pub trait TensorAsinhAPI {
type Output;
// Required method
fn asinh_f(self) -> Result<Self::Output>;
// Provided method
fn asinh(self) -> Self::Output
where Self: Sized { ... }
}