pub trait TensorAtanhAPI {
type Output;
// Required method
fn atanh_f(self) -> Result<Self::Output, Error>;
// Provided method
fn atanh(self) -> Self::Output
where Self: Sized { ... }
}pub trait TensorAtanhAPI {
type Output;
// Required method
fn atanh_f(self) -> Result<Self::Output, Error>;
// Provided method
fn atanh(self) -> Self::Output
where Self: Sized { ... }
}