* Adds values to the DataArray, expanding its internal storage to * accommodate the new items.
(...values)
| 47 | * accommodate the new items. |
| 48 | */ |
| 49 | push(...values) { |
| 50 | this.ensureLength(this.length + values.length); |
| 51 | this.data.set(values, this.length); |
| 52 | this.length += values.length; |
| 53 | } |
| 54 | |
| 55 | /** |
| 56 | * Returns a copy of the data from the index `from`, inclusive, to the index |
nothing calls this directly
no test coverage detected