Trait Stack

Source
pub trait Stack<T> {
    type Output;

    // Required method
    fn stack(&self, other: &T, along: Axis) -> Self::Output;
}

Required Associated Types§

Required Methods§

Source

fn stack(&self, other: &T, along: Axis) -> Self::Output

Implementors§