The SharedArrayBuffer object is used to represent a generic,
raw binary data buffer, similar to the js.ArrayBuffer
object,
in a way that they can be used to create views on shared memory.
an ArrayBuffer, a SharedArrayBuffer cannot become detached.
The SharedArrayBuffer object is used to represent a generic, raw binary data buffer, similar to the `js.ArrayBuffer` object, in a way that they can be used to create views on shared memory. an ArrayBuffer, a SharedArrayBuffer cannot become detached.
(byte-length this)
Property.
The byteLength accessor property represents the length of an in bytes.
sab.byteLength
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/byteLength
Property. The byteLength accessor property represents the length of an in bytes. `sab.byteLength` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/byteLength`
(length this)
Property.
The SharedArrayBuffer constructor's length property whose value 1.
Property. The SharedArrayBuffer constructor's length property whose value 1.
(prototype this)
Property.
The SharedArrayBuffer.prototype property represents the prototype
the js.SharedArrayBuffer
object.
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/prototype
Property. The SharedArrayBuffer.prototype property represents the prototype the `js.SharedArrayBuffer` object. See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/prototype`
(set-byte-length! this val)
Property.
The byteLength accessor property represents the length of an in bytes.
sab.byteLength
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/byteLength
Property. The byteLength accessor property represents the length of an in bytes. `sab.byteLength` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/byteLength`
(set-length! this val)
Property.
The SharedArrayBuffer constructor's length property whose value 1.
Property. The SharedArrayBuffer constructor's length property whose value 1.
(set-prototype! this val)
Property.
The SharedArrayBuffer.prototype property represents the prototype
the js.SharedArrayBuffer
object.
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/prototype
Property. The SharedArrayBuffer.prototype property represents the prototype the `js.SharedArrayBuffer` object. See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/prototype`
(slice this & args)
Method.
The SharedArrayBuffer.prototype.slice() method returns a new
whose contents are a copy of this SharedArrayBuffer's bytes from
inclusive, up to end, exclusive. If either begin or end is negative,
refers to an index from the end of the array, as opposed to from
beginning. This method has the same algorithm as Array.prototype.slice()
.
sab.slice() sab.slice(begin) sab.slice(begin, end)
See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/slice
Method. The SharedArrayBuffer.prototype.slice() method returns a new whose contents are a copy of this SharedArrayBuffer's bytes from inclusive, up to end, exclusive. If either begin or end is negative, refers to an index from the end of the array, as opposed to from beginning. This method has the same algorithm as `Array.prototype.slice()`. `sab.slice() sab.slice(begin) sab.slice(begin, end)` See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/slice`
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close