()
| 69251 | } |
| 69252 | class MathArray extends _extendableBuiltin(Array) { |
| 69253 | clone() { |
| 69254 | return new this.constructor().copy(this); |
| 69255 | } |
| 69256 | fromArray(array, offset = 0) { |
| 69257 | for(let i = 0; i < this.ELEMENTS; ++i)this[i] = array[i + offset]; |
| 69258 | return this.check(); |
no test coverage detected