Float64Array Class

Float64Array class

Represents an array of 64-bit floating point numbers (corresponding to the C float data type) in the platform byte order.

public class Float64Array : TypedArray<double>

Constructors

NameDescription
Float64Array(ArrayBuffer)Initializes a new instance of the Float64Array class.
Float64Array(double[])Initializes a new instance of the Float64Array class.
Float64Array(int)Initializes a new instance of the Float64Array class.
Float64Array(ArrayBuffer, int)Initializes a new instance of the Float64Array class.
Float64Array(ArrayBuffer, int, int)Initializes a new instance of the Float64Array class.

Properties

NameDescription
getBuffer Gets the ArrayBuffer referenced by this instance.
getByteLength Gets the byteLength accessor property represents the length of an ArrayBuffer in bytes.
getByteOffset Gets the byteOffset from the start of referenced ArrayBuffer.
[getItem]
[setItem] Gets or sets the Double at the specified index.
getLength Gets the length of a typed array.

Methods

NameDescription
getPlatformType()This method is used to retrieve the ECMAScript object .

Fields

NameDescription
static readonly BYTES_PER_ELEMENTThe property represents the size in bytes of each element in an typed array.

See Also