Returns the dimensions of the array.
(&self)
| 49 | impl<'a, T> Array<'a, T> { |
| 50 | /// Returns the dimensions of the array. |
| 51 | pub fn dims(&self) -> ArrayDimensions<'a> { |
| 52 | self.dims |
| 53 | } |
| 54 | |
| 55 | /// Returns the elements of the array. |
| 56 | pub fn elements(&self) -> DatumList<'a, T> { |
no outgoing calls
no test coverage detected