(dst: TypedArray, src: TypedArray, size: number)
| 442 | } |
| 443 | |
| 444 | function copyArray(dst: TypedArray, src: TypedArray, size: number) { |
| 445 | for (let i = 0; i < size; i++) { |
| 446 | dst[i] = src[i]; |
| 447 | } |
| 448 | } |
| 449 | |
| 450 | function makeShape(shape: number[]|TypedArray, isPartial: boolean) { |
| 451 | const out: number[] = []; |
no outgoing calls
no test coverage detected
searching dependent graphs…