Dimensions returns the array dimensions. If array is nil then nil is returned.
()
| 13 | type ArrayGetter interface { |
| 14 | // Dimensions returns the array dimensions. If array is nil then nil is returned. |
| 15 | Dimensions() []ArrayDimension |
| 16 | |
| 17 | // Index returns the element at i. |
| 18 | Index(i int) any |
no outgoing calls
no test coverage detected