pub trait DecrementAxis {
type Output;
// Required method
fn dec(&self) -> Self::Output;
}
Expand description
This trait enables an array to remove an axis from itself
pub trait DecrementAxis {
type Output;
// Required method
fn dec(&self) -> Self::Output;
}
This trait enables an array to remove an axis from itself