The ArrayBuffer object is used to represent a generic, fixed-length binary data buffer.
The ArrayBuffer object is used to represent a generic, fixed-length binary data buffer.
(byte-length this)
Property.
The byteLength accessor property represents the length of an in bytes.
arraybuffer.byteLength
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/byteLength
Property. The byteLength accessor property represents the length of an in bytes. `arraybuffer.byteLength` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/byteLength`
(is-view this arg)
Method.
The ArrayBuffer.isView() method returns true if arg is one of
ArrayBuffer views, such as typed array objects or a js.DataView
;
otherwise.
ArrayBuffer.isView(arg)
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/isView
Method. The ArrayBuffer.isView() method returns true if arg is one of ArrayBuffer views, such as typed array objects or a `js.DataView`; otherwise. `ArrayBuffer.isView(arg)` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/isView`
(length this)
Property.
The ArrayBuffer constructor's length property whose value is
Property. The ArrayBuffer constructor's length property whose value is
(prototype this)
Property.
The ArrayBuffer.prototype property represents the prototype for
js.ArrayBuffer
object.
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/prototype
Property. The ArrayBuffer.prototype property represents the prototype for `js.ArrayBuffer` object. See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/prototype`
(set-byte-length! this val)
Property.
The byteLength accessor property represents the length of an in bytes.
arraybuffer.byteLength
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/byteLength
Property. The byteLength accessor property represents the length of an in bytes. `arraybuffer.byteLength` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/byteLength`
(set-length! this val)
Property.
The ArrayBuffer constructor's length property whose value is
Property. The ArrayBuffer constructor's length property whose value is
(set-prototype! this val)
Property.
The ArrayBuffer.prototype property represents the prototype for
js.ArrayBuffer
object.
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/prototype
Property. The ArrayBuffer.prototype property represents the prototype for `js.ArrayBuffer` object. See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/prototype`
(slice this & args)
Method.
The slice() method returns a new ArrayBuffer whose contents are copy of this ArrayBuffer's bytes from begin, inclusive, up to exclusive.
arraybuffer.slice(begin[, end])
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/slice
Method. The slice() method returns a new ArrayBuffer whose contents are copy of this ArrayBuffer's bytes from begin, inclusive, up to exclusive. `arraybuffer.slice(begin[, end])` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/slice`
(transfer this & args)
Method.
[Experimental]
The static ArrayBuffer.transfer() method returns a new ArrayBuffer contents have been taken from the oldBuffer's data and then is truncated or zero-extended by newByteLength. If newByteLength undefined, the byteLength of the oldBuffer is used. This operation oldBuffer in a detached state.
ArrayBuffer.transfer(oldBuffer [, newByteLength]);
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/transfer
Method. [Experimental] The static ArrayBuffer.transfer() method returns a new ArrayBuffer contents have been taken from the oldBuffer's data and then is truncated or zero-extended by newByteLength. If newByteLength undefined, the byteLength of the oldBuffer is used. This operation oldBuffer in a detached state. `ArrayBuffer.transfer(oldBuffer [, newByteLength]);` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/transfer`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close