method Int32Array.subarray
Private
Int32Array.subarray(
begin?: number,
end?: number,
): Int32Array

Gets a new Int32Array view of the ArrayBuffer store for this array, referencing the elements at begin, inclusive, up to end, exclusive.

Parameters

optional
begin: number

The index of the beginning of the array.

optional
end: number

The index of the end of the array.

Return Type