Trait ndarray::RemoveAxis
source · pub trait RemoveAxis: Dimension {
type Smaller: Dimension;
// Required method
fn remove_axis(&self, axis: usize) -> Self::Smaller;
}
Expand description
Helper trait to define a larger-than relation for array shapes: removing one axis from Self gives smaller dimension Smaller.
Required Associated Types§
Required Methods§
fn remove_axis(&self, axis: usize) -> Self::Smaller
Object Safety§
This trait is not object safe.