MCPcopy Index your code
hub / github.com/nodejs/node / TypedArrayFillHelper

Function TypedArrayFillHelper

deps/v8/test/mjsunit/typedarray-helpers.js:226–232  ·  view source on GitHub ↗
(ta, n, start, end)

Source from the content-addressed store, hash-verified

224}
225
226function TypedArrayFillHelper(ta, n, start, end) {
227 if (ta instanceof BigInt64Array || ta instanceof BigUint64Array) {
228 ta.fill(BigInt(n), start, end);
229 } else {
230 ta.fill(n, start, end);
231 }
232}
233
234function ArrayFillHelper(ta, n, start, end) {
235 if (ta instanceof BigInt64Array || ta instanceof BigUint64Array) {

Calls 1

fillMethod · 0.80

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…