Float64Array

Float64Array(int)

Initializes a new instance of the Float64Array class.

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

See Also


Float64Array(double[])

Initializes a new instance of the Float64Array class.

public Float64Array(double[] data)
ParameterTypeDescription
dataDouble[]The array data.

See Also


Float64Array(ArrayBuffer)

Initializes a new instance of the Float64Array class.

public Float64Array(ArrayBuffer buffer)
ParameterTypeDescription
bufferArrayBufferThe data buffer.

See Also


Float64Array(ArrayBuffer, int)

Initializes a new instance of the Float64Array class.

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

See Also


Float64Array(ArrayBuffer, int, int)

Initializes a new instance of the Float64Array class.

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

See Also