* Sets a value or an array of values. * @param array A typed or untyped array of values to set. * @param offset The index in the current array at which the values are to be written.
(array: ArrayLike<number>, offset?: number)
| 2082 | * @param offset The index in the current array at which the values are to be written. |
| 2083 | */ |
| 2084 | set(array: ArrayLike<number>, offset?: number): void; |
| 2085 | |
| 2086 | /** |
| 2087 | * Returns a section of an array. |