The DataView view provides a low-level interface for reading
writing multiple number types in a binary js.ArrayBuffer
, without
to care about the platform's endianness.
The DataView view provides a low-level interface for reading writing multiple number types in a binary `js.ArrayBuffer`, without to care about the platform's endianness.
(buffer this)
Property.
[Read Only]
The buffer accessor property represents the js.ArrayBuffer
js.SharedArrayBuffer
referenced by the DataView at construction
dataview.buffer
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/buffer
Property. [Read Only] The buffer accessor property represents the `js.ArrayBuffer` `js.SharedArrayBuffer` referenced by the DataView at construction `dataview.buffer` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/buffer`
(byte-length this)
Property.
[Read Only]
The byteLength accessor property represents the length (in bytes)
this view from the start of its js.ArrayBuffer
or js.SharedArrayBuffer
.
dataview.byteLength
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/byteLength
Property. [Read Only] The byteLength accessor property represents the length (in bytes) this view from the start of its `js.ArrayBuffer` or `js.SharedArrayBuffer`. `dataview.byteLength` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/byteLength`
(byte-offset this)
Property.
[Read Only]
The byteOffset accessor property represents the offset (in bytes)
this view from the start of its js.ArrayBuffer
or js.SharedArrayBuffer
.
dataview.byteOffset
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/byteOffset
Property. [Read Only] The byteOffset accessor property represents the offset (in bytes) this view from the start of its `js.ArrayBuffer` or `js.SharedArrayBuffer`. `dataview.byteOffset` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/byteOffset`
(get-big-int64 this & args)
Method.
The getBigInt64() method gets a signed 64-bit integer (long long)
the specified byte offset from the start of the js.DataView
.
dataview.getBigInt64(byteOffset [, littleEndian])
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getBigInt64
Method. The getBigInt64() method gets a signed 64-bit integer (long long) the specified byte offset from the start of the `js.DataView`. `dataview.getBigInt64(byteOffset [, littleEndian])` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getBigInt64`
(get-big-uint64 this & args)
Method.
The getBigUint64() method gets an unsigned 64-bit integer (unsigned
long) at the specified byte offset from the start of the js.DataView
.
dataview.getBigUint64(byteOffset [, littleEndian])
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getBigUint64
Method. The getBigUint64() method gets an unsigned 64-bit integer (unsigned long) at the specified byte offset from the start of the `js.DataView`. `dataview.getBigUint64(byteOffset [, littleEndian])` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getBigUint64`
(get-float32 this & args)
Method.
The getFloat32() method gets a signed 32-bit float (float) at
specified byte offset from the start of the js.DataView
.
dataview.getFloat32(byteOffset [, littleEndian])
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getFloat32
Method. The getFloat32() method gets a signed 32-bit float (float) at specified byte offset from the start of the `js.DataView`. `dataview.getFloat32(byteOffset [, littleEndian])` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getFloat32`
(get-float64 this & args)
Method.
The getFloat64() method gets a signed 64-bit float (double) at
specified byte offset from the start of the js.DataView
.
dataview.getFloat64(byteOffset [, littleEndian])
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getFloat64
Method. The getFloat64() method gets a signed 64-bit float (double) at specified byte offset from the start of the `js.DataView`. `dataview.getFloat64(byteOffset [, littleEndian])` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getFloat64`
(get-int16 this & args)
Method.
The getInt16() method gets a signed 16-bit integer (short) at
specified byte offset from the start of the js.DataView
.
dataview.getInt16(byteOffset [, littleEndian])
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getInt16
Method. The getInt16() method gets a signed 16-bit integer (short) at specified byte offset from the start of the `js.DataView`. `dataview.getInt16(byteOffset [, littleEndian])` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getInt16`
(get-int32 this & args)
Method.
The getInt32() method gets a signed 32-bit integer (long) at
specified byte offset from the start of the js.DataView
.
dataview.getInt32(byteOffset [, littleEndian])
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getInt32
Method. The getInt32() method gets a signed 32-bit integer (long) at specified byte offset from the start of the `js.DataView`. `dataview.getInt32(byteOffset [, littleEndian])` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getInt32`
(get-int8 this byte-offset)
Method.
The getInt8() method gets a signed 8-bit integer (byte) at the
byte offset from the start of the js.DataView
.
dataview.getInt8(byteOffset)
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getInt8
Method. The getInt8() method gets a signed 8-bit integer (byte) at the byte offset from the start of the `js.DataView`. `dataview.getInt8(byteOffset)` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getInt8`
(get-uint16 this & args)
Method.
The getUint16() method gets an unsigned 16-bit integer (unsigned
at the specified byte offset from the start of the js.DataView
.
dataview.getUint16(byteOffset [, littleEndian])
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getUint16
Method. The getUint16() method gets an unsigned 16-bit integer (unsigned at the specified byte offset from the start of the `js.DataView`. `dataview.getUint16(byteOffset [, littleEndian])` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getUint16`
(get-uint32 this & args)
Method.
The getUint32() method gets an unsigned 32-bit integer (unsigned
at the specified byte offset from the start of the js.DataView
.
dataview.getUint32(byteOffset [, littleEndian])
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getUint32
Method. The getUint32() method gets an unsigned 32-bit integer (unsigned at the specified byte offset from the start of the `js.DataView`. `dataview.getUint32(byteOffset [, littleEndian])` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getUint32`
(get-uint8 this byte-offset)
Method.
The getUint8() method gets an unsigned 8-bit integer (unsigned
at the specified byte offset from the start of the js.DataView
.
dataview.getUint8(byteOffset)
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getUint8
Method. The getUint8() method gets an unsigned 8-bit integer (unsigned at the specified byte offset from the start of the `js.DataView`. `dataview.getUint8(byteOffset)` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/getUint8`
(prototype this)
Property.
The DataView.prototype property represents the prototype for
js.DataView
object.
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/prototype
Property. The DataView.prototype property represents the prototype for `js.DataView` object. See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/prototype`
(set-big-int64 this & args)
Method.
The setBigInt64() method stores a signed 64-bit integer (long
value at the specified byte offset from the start of the js.DataView
.
dataview.setBigInt64(byteOffset, value [, littleEndian])
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setBigInt64
Method. The setBigInt64() method stores a signed 64-bit integer (long value at the specified byte offset from the start of the `js.DataView`. `dataview.setBigInt64(byteOffset, value [, littleEndian])` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setBigInt64`
(set-big-uint64 this & args)
Method.
The setBigUint64() method stores an unsigned 64-bit integer (unsigned long) value at the specified byte offset from the start of the
dataview.setBigUint64(byteOffset, value [, littleEndian])
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setBigUint64
Method. The setBigUint64() method stores an unsigned 64-bit integer (unsigned long) value at the specified byte offset from the start of the `dataview.setBigUint64(byteOffset, value [, littleEndian])` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setBigUint64`
(set-float32 this & args)
Method.
The setFloat32() method stores a signed 32-bit float (float)
at the specified byte offset from the start of the js.DataView
.
dataview.setFloat32(byteOffset, value [, littleEndian])
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setFloat32
Method. The setFloat32() method stores a signed 32-bit float (float) at the specified byte offset from the start of the `js.DataView`. `dataview.setFloat32(byteOffset, value [, littleEndian])` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setFloat32`
(set-float64 this & args)
Method.
The setFloat64() method stores a signed 64-bit float (double)
at the specified byte offset from the start of the js.DataView
.
dataview.setFloat64(byteOffset, value [, littleEndian])
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setFloat64
Method. The setFloat64() method stores a signed 64-bit float (double) at the specified byte offset from the start of the `js.DataView`. `dataview.setFloat64(byteOffset, value [, littleEndian])` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setFloat64`
(set-int16 this & args)
Method.
The setInt16() method stores a signed 16-bit integer (short)
at the specified byte offset from the start of the js.DataView
.
dataview.setInt16(byteOffset, value [, littleEndian])
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setInt16
Method. The setInt16() method stores a signed 16-bit integer (short) at the specified byte offset from the start of the `js.DataView`. `dataview.setInt16(byteOffset, value [, littleEndian])` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setInt16`
(set-int32 this & args)
Method.
The setInt32() method stores a signed 32-bit integer (long) value
the specified byte offset from the start of the js.DataView
.
dataview.setInt32(byteOffset, value [, littleEndian])
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setInt32
Method. The setInt32() method stores a signed 32-bit integer (long) value the specified byte offset from the start of the `js.DataView`. `dataview.setInt32(byteOffset, value [, littleEndian])` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setInt32`
(set-int8 this byte-offset value)
Method.
The setInt8() method stores a signed 8-bit integer (byte) value
the specified byte offset from the start of the js.DataView
.
dataview.setInt8(byteOffset, value)
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setInt8
Method. The setInt8() method stores a signed 8-bit integer (byte) value the specified byte offset from the start of the `js.DataView`. `dataview.setInt8(byteOffset, value)` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setInt8`
(set-prototype! this val)
Property.
The DataView.prototype property represents the prototype for
js.DataView
object.
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/prototype
Property. The DataView.prototype property represents the prototype for `js.DataView` object. See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/prototype`
(set-uint16 this & args)
Method.
The setUint16() method stores an unsigned 16-bit integer (unsigned
value at the specified byte offset from the start of the js.DataView
.
dataview.setUint16(byteOffset, value [, littleEndian])
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setUint16
Method. The setUint16() method stores an unsigned 16-bit integer (unsigned value at the specified byte offset from the start of the `js.DataView`. `dataview.setUint16(byteOffset, value [, littleEndian])` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setUint16`
(set-uint32 this & args)
Method.
The setUint32() method stores an unsigned 32-bit integer (unsigned
value at the specified byte offset from the start of the js.DataView
.
dataview.setUint32(byteOffset, value [, littleEndian])
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setUint32
Method. The setUint32() method stores an unsigned 32-bit integer (unsigned value at the specified byte offset from the start of the `js.DataView`. `dataview.setUint32(byteOffset, value [, littleEndian])` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setUint32`
(set-uint8 this byte-offset value)
Method.
The setUint8() method stores an unsigned 8-bit integer (byte)
at the specified byte offset from the start of the js.DataView
.
dataview.setUint8(byteOffset, value)
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setUint8
Method. The setUint8() method stores an unsigned 8-bit integer (byte) at the specified byte offset from the start of the `js.DataView`. `dataview.setUint8(byteOffset, value)` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/DataView/setUint8`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close