* Take a slice of the array. If `start` is undefined, it is assumed to be 0; if `end` is undefined, it is assumbed * to be the end of the array.
(start?: number, end?: number)
| 45 | * to be the end of the array. |
| 46 | */ |
| 47 | slice(start?: number, end?: number): DataArray<T>; |
| 48 | /** Concatenate the values in this data array with those of another iterable / data array / array. */ |
| 49 | concat(other: Iterable<T>): DataArray<T>; |
| 50 |
no outgoing calls
no test coverage detected