pub trait DecrementAxis {
type Output;
// Required method
fn dec_axis(&self) -> Self::Output;
}Expand description
The DecrementAxis is used as a unary operator for removing a single axis
from a multidimensional array or tensor-like structure.