(other: DataArray<T>)
| 251 | } |
| 252 | |
| 253 | public concat(other: DataArray<T>): DataArray<T> { |
| 254 | return this.lwrap(this.values.concat((other as DataArrayImpl<T>).values)); |
| 255 | } |
| 256 | |
| 257 | /** Return the first index of the given (optionally starting the search) */ |
| 258 | public indexOf(element: T, fromIndex?: number): number { |