pub trait HasAxis<const I: isize> {
    const SIZE: usize;
}
Expand description

An NdArray that has an Ith axis

Required Associated Constants

The size of the axis. E.g. an nd array of shape (M, N, O):

  1. The 0th axis has SIZE = M
  2. The 1th axis has SIZE = N
  3. The 2th axis has SIZE = O

Implementations on Foreign Types

Implementors