(ta, n, start, end)
| 232 | } |
| 233 | |
| 234 | function ArrayFillHelper(ta, n, start, end) { |
| 235 | if (ta instanceof BigInt64Array || ta instanceof BigUint64Array) { |
| 236 | Array.prototype.fill.call(ta, BigInt(n), start, end); |
| 237 | } else { |
| 238 | Array.prototype.fill.call(ta, n, start, end); |
| 239 | } |
| 240 | } |
| 241 | |
| 242 | function TypedArrayFindHelper(ta, p) { |
| 243 | return ta.find(p); |
no test coverage detected
searching dependent graphs…