| 40 | /// `Array<'a>` continues to work unchanged. |
| 41 | #[derive(Clone, Copy, Debug, Eq, PartialEq, Hash, Ord, PartialOrd)] |
| 42 | pub struct Array<'a, T = Datum<'a>> { |
| 43 | /// The elements in the array. |
| 44 | pub(crate) elements: DatumList<'a, T>, |
| 45 | /// The dimensions of the array. |
| 46 | pub(crate) dims: ArrayDimensions<'a>, |
| 47 | } |
| 48 | |
| 49 | impl<'a, T> Array<'a, T> { |
| 50 | /// Returns the dimensions of the array. |
no outgoing calls