Concatenate the values in this data array with those of another iterable / data array / array.
(other: Iterable<T>)
| 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 | |
| 51 | /** Return the first index of the given (optionally starting the search) */ |
| 52 | indexOf(element: T, fromIndex?: number): number; |
no outgoing calls
no test coverage detected