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