Creates a new array with the specified dimensions.
| 98 | |
| 99 | // Creates a new array with the specified dimensions. |
| 100 | explicit Array(absl::Span<const int64> sizes) : Array(sizes, T()) {} |
| 101 | |
| 102 | // Creates a new array with the specified dimensions and specified value for |
| 103 | // every cell. |