Liking cljdoc? Tell your friends :D

js.Uint32Array

The Uint32Array typed array represents an array of 32-bit unsigned in the platform byte order. If control over byte order is needed, js.DataView instead. The contents are initialized to 0. Once you can reference elements in the array using the object's methods, using standard array index syntax (that is, using bracket notation).

The Uint32Array typed array represents an array of 32-bit unsigned
in the platform byte order. If control over byte order is needed,
`js.DataView` instead. The contents are initialized to 0. Once
you can reference elements in the array using the object's methods,
using standard array index syntax (that is, using bracket notation).
raw docstring

buffercljs

(buffer this)

Property.

The buffer accessor property represents the js.ArrayBuffer by a TypedArray at construction time.

typedArray.buffer

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/buffer

Property.

The buffer accessor property represents the `js.ArrayBuffer`
by a TypedArray at construction time.

`typedArray.buffer`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/buffer`
sourceraw docstring

byte-lengthcljs

(byte-length this)

Property.

The byteLength accessor property represents the length (in bytes) a typed array.

typedarray.byteLength

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/byteLength

Property.

The byteLength accessor property represents the length (in bytes)
a typed array.

`typedarray.byteLength`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/byteLength`
sourceraw docstring

byte-offsetcljs

(byte-offset this)

Property.

The byteOffset accessor property represents the offset (in bytes) a typed array from the start of its js.ArrayBuffer.

typedarray.byteOffset

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/byteOffset

Property.

The byteOffset accessor property represents the offset (in bytes)
a typed array from the start of its `js.ArrayBuffer`.

`typedarray.byteOffset`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/byteOffset`
sourceraw docstring

bytes-per-elementcljs

(bytes-per-element this)

Property.

The TypedArray.BYTES_PER_ELEMENT property represents the size bytes of each element in an typed array.

TypedArray.BYTES_PER_ELEMENT;

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/BYTES_PER_ELEMENT

Property.

The TypedArray.BYTES_PER_ELEMENT property represents the size
bytes of each element in an typed array.

`TypedArray.BYTES_PER_ELEMENT;`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/BYTES_PER_ELEMENT`
sourceraw docstring

copy-withincljs

(copy-within this & args)

Method.

The copyWithin() method copies the sequence of array elements the array to the position starting at target. The copy is taken the index positions of the second and third arguments start and The end argument is optional and defaults to the length of the This method has the same algorithm as Array.prototype.copyWithin. is one of the typed array types here.

typedarray.copyWithin(target, start[, end = this.length])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/copyWithin

Method.

The copyWithin() method copies the sequence of array elements
the array to the position starting at target. The copy is taken
the index positions of the second and third arguments start and
The end argument is optional and defaults to the length of the
This method has the same algorithm as `Array.prototype.copyWithin`.
is one of the typed array types here.

`typedarray.copyWithin(target, start[, end = this.length])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/copyWithin`
sourceraw docstring

entriescljs

(entries this)

Method.

The entries() method returns a new Array Iterator object that the key/value pairs for each index in the array.

arr.entries()

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/entries

Method.

The entries() method returns a new Array Iterator object that
the key/value pairs for each index in the array.

`arr.entries()`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/entries`
sourceraw docstring

everycljs

(every this & args)

Method.

The every() method tests whether all elements in the typed array the test implemented by the provided function. This method has same algorithm as Array.prototype.every(). TypedArray is one the typed array types here.

typedarray.every(callback[, thisArg])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/every

Method.

The every() method tests whether all elements in the typed array
the test implemented by the provided function. This method has
same algorithm as `Array.prototype.every()`. TypedArray is one
the typed array types here.

`typedarray.every(callback[, thisArg])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/every`
sourceraw docstring

fillcljs

(fill this & args)

Method.

The fill() method fills all the elements of a typed array from start index to an end index with a static value. This method the same algorithm as Array.prototype.fill(). TypedArray is of the typed array types here.

typedarray.fill(value[, start = 0[, end = this.length]])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/fill

Method.

The fill() method fills all the elements of a typed array from
start index to an end index with a static value. This method
the same algorithm as `Array.prototype.fill()`. TypedArray is
of the typed array types here.

`typedarray.fill(value[, start = 0[, end = this.length]])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/fill`
sourceraw docstring

filtercljs

(filter this & args)

Method.

The filter() method creates a new typed array with all elements pass the test implemented by the provided function. This method the same algorithm as Array.prototype.filter(). TypedArray one of the typed array types here.

typedarray.filter(callback[, thisArg])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/filter

Method.

The filter() method creates a new typed array with all elements
pass the test implemented by the provided function. This method
the same algorithm as `Array.prototype.filter()`. TypedArray
one of the typed array types here.

`typedarray.filter(callback[, thisArg])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/filter`
sourceraw docstring

findcljs

(find this & args)

Method.

The find() method returns a value in the typed array, if an element the provided testing function. Otherwise js.undefined is returned. is one of the typed array types here.

typedarray.find(callback[, thisArg])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/find

Method.

The find() method returns a value in the typed array, if an element
the provided testing function. Otherwise `js.undefined` is returned.
is one of the typed array types here.

`typedarray.find(callback[, thisArg])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/find`
sourceraw docstring

find-indexcljs

(find-index this & args)

Method.

The findIndex() method returns an index in the typed array, if element in the typed array satisfies the provided testing function. -1 is returned.

typedarray.findIndex(callback[, thisArg])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/findIndex

Method.

The findIndex() method returns an index in the typed array, if
element in the typed array satisfies the provided testing function.
-1 is returned.

`typedarray.findIndex(callback[, thisArg])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/findIndex`
sourceraw docstring

for-eachcljs

(for-each this & args)

Method.

The forEach() method executes a provided function once per array This method has the same algorithm as Array.prototype.forEach(). is one of the typed array types here.

typedarray.forEach(callback[, thisArg])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/forEach

Method.

The forEach() method executes a provided function once per array
This method has the same algorithm as `Array.prototype.forEach()`.
is one of the typed array types here.

`typedarray.forEach(callback[, thisArg])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/forEach`
sourceraw docstring

fromcljs

(from this & args)

Method.

The TypedArray.from() method creates a new typed array from an or iterable object. This method is nearly the same as Array.from().

`TypedArray.from(source[, mapFn[, thisArg]])

where TypedArray is one of:

Int8Array Uint8Array Uint8ClampedArray Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array BigInt64Array BigUint64Array`

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/from

Method.

The TypedArray.from() method creates a new typed array from an
or iterable object. This method is nearly the same as `Array.from()`.

`TypedArray.from(source[, mapFn[, thisArg]])

where TypedArray is one of:

Int8Array
Uint8Array
Uint8ClampedArray
Int16Array
Uint16Array
Int32Array
Uint32Array
Float32Array
Float64Array
BigInt64Array
BigUint64Array`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/from`
sourceraw docstring

includescljs

(includes this & args)

Method.

The includes() method determines whether a typed array includes certain element, returning true or false as appropriate. This has the same algorithm as Array.prototype.includes(). TypedArray one of the typed array types here.

typedarray.includes(searchElement[, fromIndex]);

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/includes

Method.

The includes() method determines whether a typed array includes
certain element, returning true or false as appropriate. This
has the same algorithm as `Array.prototype.includes()`. TypedArray
one of the typed array types here.

`typedarray.includes(searchElement[, fromIndex]);`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/includes`
sourceraw docstring

index-ofcljs

(index-of this & args)

Method.

The indexOf() method returns the first index at which a given can be found in the typed array, or -1 if it is not present. method has the same algorithm as Array.prototype.indexOf(). is one of the typed array types here.

typedarray.indexOf(searchElement[, fromIndex = 0])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/indexOf

Method.

The indexOf() method returns the first index at which a given
can be found in the typed array, or -1 if it is not present.
method has the same algorithm as `Array.prototype.indexOf()`.
is one of the typed array types here.

`typedarray.indexOf(searchElement[, fromIndex = 0])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/indexOf`
sourceraw docstring

joincljs

(join this & args)

Method.

The join() method joins all elements of an array into a string. method has the same algorithm as Array.prototype.join(). TypedArray one of the typed array types here.

typedarray.join([separator = ',']);

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/join

Method.

The join() method joins all elements of an array into a string.
method has the same algorithm as `Array.prototype.join()`. TypedArray
one of the typed array types here.

`typedarray.join([separator = ',']);`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/join`
sourceraw docstring

keyscljs

(keys this)

Method.

The keys() method returns a new Array Iterator object that contains keys for each index in the array.

arr.keys()

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/keys

Method.

The keys() method returns a new Array Iterator object that contains
keys for each index in the array.

`arr.keys()`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/keys`
sourceraw docstring

last-index-ofcljs

(last-index-of this & args)

Method.

The lastIndexOf() method returns the last index at which a given can be found in the typed array, or -1 if it is not present. typed array is searched backwards, starting at fromIndex. This has the same algorithm as Array.prototype.lastIndexOf(). TypedArray one of the typed array types here.

typedarray.lastIndexOf(searchElement[, fromIndex = typedarray.length])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/lastIndexOf

Method.

The lastIndexOf() method returns the last index at which a given
can be found in the typed array, or -1 if it is not present.
typed array is searched backwards, starting at fromIndex. This
has the same algorithm as `Array.prototype.lastIndexOf()`. TypedArray
one of the typed array types here.

`typedarray.lastIndexOf(searchElement[, fromIndex = typedarray.length])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/lastIndexOf`
sourceraw docstring

lengthcljs

(length this)

Property.

The length accessor property represents the length (in elements) a typed array.

typedarray.length

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/length

Property.

The length accessor property represents the length (in elements)
a typed array.

`typedarray.length`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/length`
sourceraw docstring

mapcljs

(map this & args)

Method.

The map() method creates a new typed array with the results of a provided function on every element in this typed array. This has the same algorithm as Array.prototype.map(). TypedArray one of the typed array types here.

typedarray.map(callback[, thisArg])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/map

Method.

The map() method creates a new typed array with the results of
a provided function on every element in this typed array. This
has the same algorithm as `Array.prototype.map()`. TypedArray
one of the typed array types here.

`typedarray.map(callback[, thisArg])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/map`
sourceraw docstring

movecljs

(move this start end target)

Method.

The move() method used to copy the sequence of array elements the array to the position starting at target. However, this non-standard has been replaced with the standard TypedArray.prototype.copyWithin() TypedArray is one of the typed array types here.

typedarray.move(start, end, target)

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/move

Method.

The move() method used to copy the sequence of array elements
the array to the position starting at target. However, this non-standard
has been replaced with the standard `TypedArray.prototype.copyWithin()`
TypedArray is one of the typed array types here.

`typedarray.move(start, end, target)`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/move`
sourceraw docstring

namecljs

(name this)

Property.

The TypedArray.name property represents a string value of the array constructor name.

TypedArray.name;

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/name

Property.

The TypedArray.name property represents a string value of the
array constructor name.

`TypedArray.name;`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/name`
sourceraw docstring

ofcljs

(of this & args)

Method.

The TypedArray.of() method creates a new typed array from a variable of arguments. This method is nearly the same as Array.of().

`TypedArray.of(element0[, element1[, ...[, elementN]]])

where TypedArray is one of:

Int8Array Uint8Array Uint8ClampedArray Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array BigInt64Array BigUint64Array`

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/of

Method.

The TypedArray.of() method creates a new typed array from a variable
of arguments. This method is nearly the same as `Array.of()`.

`TypedArray.of(element0[, element1[, ...[, elementN]]])

where TypedArray is one of:

Int8Array
Uint8Array
Uint8ClampedArray
Int16Array
Uint16Array
Int32Array
Uint32Array
Float32Array
Float64Array
BigInt64Array
BigUint64Array`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/of`
sourceraw docstring

prototypecljs

(prototype this)

Property.

The TypedArray.prototype property represents the prototype for constructors.

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/prototype

Property.

The TypedArray.prototype property represents the prototype for
constructors.

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/prototype`
sourceraw docstring

reducecljs

(reduce this & args)

Method.

The reduce() method applies a function against an accumulator each value of the typed array (from left-to-right) has to reduce to a single value. This method has the same algorithm as Array.prototype.reduce(). is one of the typed array types here.

typedarray.reduce(callback[, initialValue])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/reduce

Method.

The reduce() method applies a function against an accumulator
each value of the typed array (from left-to-right) has to reduce
to a single value. This method has the same algorithm as `Array.prototype.reduce()`.
is one of the typed array types here.

`typedarray.reduce(callback[, initialValue])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/reduce`
sourceraw docstring

reduce-rightcljs

(reduce-right this & args)

Method.

The reduceRight() method applies a function against an accumulator each value of the typed array (from right-to-left) has to reduce to a single value. This method has the same algorithm as Array.prototype.reduceRight(). is one of the typed array types here.

typedarray.reduceRight(callback[, initialValue])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/reduceRight

Method.

The reduceRight() method applies a function against an accumulator
each value of the typed array (from right-to-left) has to reduce
to a single value. This method has the same algorithm as `Array.prototype.reduceRight()`.
is one of the typed array types here.

`typedarray.reduceRight(callback[, initialValue])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/reduceRight`
sourceraw docstring

reversecljs

(reverse this)

Method.

The reverse() method reverses a typed array in place. The first array element becomes the last and the last becomes the first. method has the same algorithm as Array.prototype.reverse(). is one of the typed array types here.

typedarray.reverse();

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/reverse

Method.

The reverse() method reverses a typed array in place. The first
array element becomes the last and the last becomes the first.
method has the same algorithm as `Array.prototype.reverse()`.
is one of the typed array types here.

`typedarray.reverse();`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/reverse`
sourceraw docstring

setcljs

(set this & args)

Method.

The set() method stores multiple values in the typed array, reading values from a specified array.

typedarray.set(array[, offset]) typedarray.set(typedarray[, offset])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/set

Method.

The set() method stores multiple values in the typed array, reading
values from a specified array.

`typedarray.set(array[, offset])
typedarray.set(typedarray[, offset])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/set`
sourceraw docstring

set-buffer!cljs

(set-buffer! this val)

Property.

The buffer accessor property represents the js.ArrayBuffer by a TypedArray at construction time.

typedArray.buffer

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/buffer

Property.

The buffer accessor property represents the `js.ArrayBuffer`
by a TypedArray at construction time.

`typedArray.buffer`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/buffer`
sourceraw docstring

set-byte-length!cljs

(set-byte-length! this val)

Property.

The byteLength accessor property represents the length (in bytes) a typed array.

typedarray.byteLength

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/byteLength

Property.

The byteLength accessor property represents the length (in bytes)
a typed array.

`typedarray.byteLength`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/byteLength`
sourceraw docstring

set-byte-offset!cljs

(set-byte-offset! this val)

Property.

The byteOffset accessor property represents the offset (in bytes) a typed array from the start of its js.ArrayBuffer.

typedarray.byteOffset

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/byteOffset

Property.

The byteOffset accessor property represents the offset (in bytes)
a typed array from the start of its `js.ArrayBuffer`.

`typedarray.byteOffset`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/byteOffset`
sourceraw docstring

set-bytes-per-element!cljs

(set-bytes-per-element! this val)

Property.

The TypedArray.BYTES_PER_ELEMENT property represents the size bytes of each element in an typed array.

TypedArray.BYTES_PER_ELEMENT;

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/BYTES_PER_ELEMENT

Property.

The TypedArray.BYTES_PER_ELEMENT property represents the size
bytes of each element in an typed array.

`TypedArray.BYTES_PER_ELEMENT;`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/BYTES_PER_ELEMENT`
sourceraw docstring

set-length!cljs

(set-length! this val)

Property.

The length accessor property represents the length (in elements) a typed array.

typedarray.length

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/length

Property.

The length accessor property represents the length (in elements)
a typed array.

`typedarray.length`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/length`
sourceraw docstring

set-name!cljs

(set-name! this val)

Property.

The TypedArray.name property represents a string value of the array constructor name.

TypedArray.name;

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/name

Property.

The TypedArray.name property represents a string value of the
array constructor name.

`TypedArray.name;`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/name`
sourceraw docstring

set-prototype!cljs

(set-prototype! this val)

Property.

The TypedArray.prototype property represents the prototype for constructors.

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/prototype

Property.

The TypedArray.prototype property represents the prototype for
constructors.

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/prototype`
sourceraw docstring

slicecljs

(slice this & args)

Method.

The slice() method returns a shallow copy of a portion of a typed into a new typed array object. This method has the same algorithm Array.prototype.slice(). TypedArray is one of the typed array here.

typedarray.slice([begin[, end]])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/slice

Method.

The slice() method returns a shallow copy of a portion of a typed
into a new typed array object. This method has the same algorithm
`Array.prototype.slice()`. TypedArray is one of the typed array
here.

`typedarray.slice([begin[, end]])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/slice`
sourceraw docstring

somecljs

(some this & args)

Method.

The some() method tests whether some element in the typed array the test implemented by the provided function. This method has same algorithm as Array.prototype.some(). TypedArray is one the typed array types here.

typedarray.some(callback[, thisArg])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/some

Method.

The some() method tests whether some element in the typed array
the test implemented by the provided function. This method has
same algorithm as `Array.prototype.some()`. TypedArray is one
the typed array types here.

`typedarray.some(callback[, thisArg])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/some`
sourceraw docstring

sortcljs

(sort this & args)

Method.

The sort() method sorts the elements of a typed array numerically place and returns the typed array. This method has the same algorithm Array.prototype.sort(), except that sorts the values numerically of as strings. TypedArray is one of the typed array types here.

typedarray.sort([compareFunction])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/sort

Method.

The sort() method sorts the elements of a typed array numerically
place and returns the typed array. This method has the same algorithm
`Array.prototype.sort()`, except that sorts the values numerically
of as strings. TypedArray is one of the typed array types here.

`typedarray.sort([compareFunction])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/sort`
sourceraw docstring

subarraycljs

(subarray this & args)

Method.

The subarray() method returns a new TypedArray on the same js.ArrayBuffer and with the same element types as for this TypedArray object. begin offset is inclusive and the end offset is exclusive. TypedArray one of the typed array types.

typedarray.subarray([begin [,end]])

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/subarray

Method.

The subarray() method returns a new TypedArray on the same `js.ArrayBuffer`
and with the same element types as for this TypedArray object.
begin offset is inclusive and the end offset is exclusive. TypedArray
one of the typed array types.

`typedarray.subarray([begin [,end]])`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/subarray`
sourceraw docstring

to-locale-stringcljs

(to-locale-string this & args)

Method.

The toLocaleString() method returns a string representing the of the typed array. The elements are converted to strings and separated by a locale-specific string (such as a comma “,”). method has the same algorithm as Array.prototype.toLocaleString() as the typed array elements are numbers, the same algorithm as applies for each element. TypedArray is one of the typed array here.

typedarray.toLocaleString([locales [, options]]);

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/toLocaleString

Method.

The toLocaleString() method returns a string representing the
of the typed array. The elements are converted to strings and
separated by a locale-specific string (such as a comma “,”).
method has the same algorithm as `Array.prototype.toLocaleString()`
as the typed array elements are numbers, the same algorithm as
applies for each element. TypedArray is one of the typed array
here.

`typedarray.toLocaleString([locales [, options]]);`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/toLocaleString`
sourceraw docstring

to-stringcljs

(to-string this)

Method.

The toString() method returns a string representing the specified and its elements. This method has the same algorithm as Array.prototype.toString(). is one of the typed array types here.

typedarray.toString()

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/toString

Method.

The toString() method returns a string representing the specified
and its elements. This method has the same algorithm as `Array.prototype.toString()`.
is one of the typed array types here.

`typedarray.toString()`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/toString`
sourceraw docstring

valuescljs

(values this)

Method.

The values() method returns a new Array Iterator object that the values for each index in the array.

arr.values()

See also: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/values

Method.

The values() method returns a new Array Iterator object that
the values for each index in the array.

`arr.values()`

See also: `https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray/values`
sourceraw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close