Trait DecrementAxis

Source
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

Required Associated Types§

Required Methods§

Source

fn dec(&self) -> Self::Output

Implementors§

Source§

impl<D> DecrementAxis for D
where D: RemoveAxis,