(Type, length)
| 13969 | } |
| 13970 | |
| 13971 | function getScratchArray(Type, length) { |
| 13972 | var scratchArrayBuffer = getScratchArrayBuffer(Type.BYTES_PER_ELEMENT * length); |
| 13973 | return new Type(scratchArrayBuffer, 0, length); // arrayBuffer, byteOffset, length (in elements) |
| 13974 | } // Uses copyWithin to significantly speed up typed array value filling |
| 13975 | |
| 13976 | |
| 13977 | function fillArray(_ref) { |
nothing calls this directly
no test coverage detected