pub trait TensorGreaterAPI<TRB> {
type Output;
// Required method
fn greater_f(self, b: TRB) -> Result<Self::Output, Error>;
// Provided method
fn greater(self, b: TRB) -> Self::Output
where Self: Sized { ... }
}pub trait TensorGreaterAPI<TRB> {
type Output;
// Required method
fn greater_f(self, b: TRB) -> Result<Self::Output, Error>;
// Provided method
fn greater(self, b: TRB) -> Self::Output
where Self: Sized { ... }
}