pub trait Array<T: Debug + Display + Copy + Sized, S>: Debug {
// Required methods
fn get(&self, pos: S) -> &T;
fn shape(&self) -> S;
fn is_empty(&self) -> bool;
fn iterator<'b>(&'b self, axis: u8) -> Box<dyn Iterator<Item = &'b T> + 'b>;
}
Expand description
Abstract methods for Array