Int32Array

Int32Array(int)

Initializes a new instance of the Int32Array class.

public Int32Array(int length)
ParameterTypeDescription
lengthInt32The length (number of elements).

See Also


Int32Array(int[])

Initializes a new instance of the Int32Array class.

public Int32Array(int[] data)
ParameterTypeDescription
dataInt32[]The array data.

See Also


Int32Array(ArrayBuffer)

Initializes a new instance of the Int32Array class.

public Int32Array(ArrayBuffer buffer)
ParameterTypeDescription
bufferArrayBufferThe data buffer.

See Also


Int32Array(ArrayBuffer, int)

Initializes a new instance of the Int32Array class.

public Int32Array(ArrayBuffer buffer, int byteOffset)
ParameterTypeDescription
bufferArrayBufferThe data buffer.
byteOffsetInt32The byte offset.

See Also


Int32Array(ArrayBuffer, int, int)

Initializes a new instance of the Int32Array class.

public Int32Array(ArrayBuffer buffer, int byteOffset, int length)
ParameterTypeDescription
bufferArrayBufferThe data buffer.
byteOffsetInt32The byte offset.
lengthInt32The length.

See Also