Results 1 - 20 of 21

DataView

The DataView view provides a low-level interface for reading and writing multiple number types in an ArrayBuffer irrespective of the platform's endianness.
Constructor DataView JavaScript TypedArrays

DataView.prototype

The DataView.prototype property represents the prototype for the DataView object.
DataView JavaScript Property

DataView.prototype.buffer

The buffer accessor property represents the ArrayBuffer referenced by the DataView at construction time.
DataView JavaScript Property Prototype TypedArrays

DataView.prototype.byteLength

The byteLength accessor property represents the length (in bytes) of this view from the start of its ArrayBuffer.
DataView JavaScript Property Prototype TypedArrays

DataView.prototype.byteOffset

The byteOffset accessor property represents the offset (in bytes) of this view from the start of its ArrayBuffer.
DataView JavaScript Property Prototype TypedArrays

DataView.prototype.getFloat32()

The getFloat32() method gets a signed 32-bit float (float) at the specified byte offset from the start of the DataView.
DataView JavaScript Method Prototype TypedArrays

DataView.prototype.getFloat64()

The getFloat64() method gets a signed 64-bit float (double) at the specified byte offset from the start of the DataView.
DataView JavaScript Method Prototype TypedArrays

DataView.prototype.getInt16()

The getInt16() method gets a signed 16-bit integer (short) at the specified byte offset from the start of the DataView.
DataView JavaScript Method Prototype TypedArrays

DataView.prototype.getInt32()

The getInt32() method gets a signed 32-bit integer (long) at the specified byte offset from the start of the DataView.
DataView JavaScript Method Prototype TypedArrays

DataView.prototype.getInt8()

The getInt8() method gets a signed 8-bit integer (byte) at the specified byte offset from the start of the DataView.
DataView JavaScript Method Prototype TypedArrays

DataView.prototype.getUint16()

The getUint16() method gets an unsigned 16-bit integer (unsigned short) at the specified byte offset from the start of the DataView.
DataView JavaScript Method Prototype TypedArrays

DataView.prototype.getUint32()

The getUint32() method gets an unsigned 32-bit integer (unsigned long) at the specified byte offset from the start of the DataView.
DataView JavaScript Method Prototype TypedArrays

DataView.prototype.getUint8()

The getUint8() method gets an unsigned 8-bit integer (unsigned byte) at the specified byte offset from the start of the DataView.
DataView JavaScript Method Prototype TypedArrays

DataView.prototype.setFloat32()

The setFloat32() method stores a signed 32-bit float (float) value at the specified byte offset from the start of the DataView.
DataView JavaScript Method Prototype TypedArrays

DataView.prototype.setFloat64()

The setFloat64() method stores a signed 64-bit float (double) value at the specified byte offset from the start of the DataView.
DataView JavaScript Method Prototype TypedArrays

DataView.prototype.setInt16()

The setInt16() method stores a signed 16-bit integer (short) value at the specified byte offset from the start of the DataView.
DataView JavaScript Method Prototype TypedArrays

DataView.prototype.setInt32()

The setInt32() method stores a signed 32-bit integer (long) value at the specified byte offset from the start of the DataView.
DataView JavaScript Method Prototype TypedArrays

DataView.prototype.setInt8()

The setInt8() method stores a signed 8-bit integer (byte) value at the specified byte offset from the start of the DataView.
DataView JavaScript Method Prototype TypedArrays

DataView.prototype.setUint16()

The setUint16() method stores an unsigned 16-bit integer (unsigned short) value at the specified byte offset from the start of the DataView.
DataView JavaScript Method Prototype TypedArrays

DataView.prototype.setUint32()

The setUint32() method stores an unsigned 32-bit integer (unsigned long) value at the specified byte offset from the start of the DataView.
DataView JavaScript Method Prototype TypedArrays