Uint32Array
elt
RESCRIPT
type elt = inttyped_array
RESCRIPT
type typed_array<'a>t
RESCRIPT
type t = typed_array<elt>unsafe_get
RESCRIPT
let unsafe_get: (t, int) => eltunsafe_set
RESCRIPT
let unsafe_set: (t, int, elt) => unitbuffer
RESCRIPT
let buffer: t => array_bufferbyteLength
RESCRIPT
let byteLength: t => intbyteOffset
RESCRIPT
let byteOffset: t => intsetArray
Deprecated
RESCRIPT
let setArray: (t, array<elt>) => unitsetArrayOffset
Deprecated
RESCRIPT
let setArrayOffset: (t, array<elt>, int) => unitlength
Deprecated
RESCRIPT
let length: t => intcopyWithin
Deprecated
RESCRIPT
let copyWithin: (t, ~to_: int) => tcopyWithinFrom
Deprecated
RESCRIPT
let copyWithinFrom: (t, ~to_: int, ~from: int) => tcopyWithinFromRange
Deprecated
RESCRIPT
let copyWithinFromRange: (t, ~to_: int, ~start: int, ~end_: int) => tfillInPlace
Deprecated
RESCRIPT
let fillInPlace: (t, elt) => tfillFromInPlace
Deprecated
RESCRIPT
let fillFromInPlace: (t, elt, ~from: int) => tfillRangeInPlace
Deprecated
RESCRIPT
let fillRangeInPlace: (t, elt, ~start: int, ~end_: int) => treverseInPlace
Deprecated
RESCRIPT
let reverseInPlace: t => tsortInPlace
Deprecated
RESCRIPT
let sortInPlace: t => tsortInPlaceWith
Deprecated
RESCRIPT
let sortInPlaceWith: (t, (elt, elt) => int) => tincludes
Deprecated
RESCRIPT
let includes: (t, elt) => boolindexOf
Deprecated
RESCRIPT
let indexOf: (t, elt) => intindexOfFrom
Deprecated
RESCRIPT
let indexOfFrom: (t, elt, ~from: int) => intjoin
Deprecated
RESCRIPT
let join: t => stringjoinWith
Deprecated
RESCRIPT
let joinWith: (t, string) => stringlastIndexOf
Deprecated
RESCRIPT
let lastIndexOf: (t, elt) => intlastIndexOfFrom
Deprecated
RESCRIPT
let lastIndexOfFrom: (t, elt, ~from: int) => intslice
Deprecated
RESCRIPT
let slice: (t, ~start: int, ~end_: int) => tstart is inclusive, end_ exclusive
copy
Deprecated
RESCRIPT
let copy: t => tsliceFrom
Deprecated
RESCRIPT
let sliceFrom: (t, int) => tsubarray
Deprecated
RESCRIPT
let subarray: (t, ~start: int, ~end_: int) => tstart is inclusive, end_ exclusive
subarrayFrom
Deprecated
RESCRIPT
let subarrayFrom: (t, int) => ttoString
Deprecated
RESCRIPT
let toString: t => stringtoLocaleString
Deprecated
RESCRIPT
let toLocaleString: t => stringevery
Deprecated
RESCRIPT
let every: (t, elt => bool) => booleveryi
Deprecated
RESCRIPT
let everyi: (t, (elt, int) => bool) => boolfilter
Deprecated
RESCRIPT
let filter: (t, elt => bool) => tfilteri
Deprecated
RESCRIPT
let filteri: (t, (elt, int) => bool) => tfind
Deprecated
RESCRIPT
let find: (t, elt => bool) => Js_undefined.t<elt>findi
Deprecated
RESCRIPT
let findi: (t, (elt, int) => bool) => Js_undefined.t<elt>findIndex
Deprecated
RESCRIPT
let findIndex: (t, elt => bool) => intfindIndexi
Deprecated
RESCRIPT
let findIndexi: (t, (elt, int) => bool) => intforEach
Deprecated
RESCRIPT
let forEach: (t, elt => unit) => unitforEachi
Deprecated
RESCRIPT
let forEachi: (t, (elt, int) => unit) => unitmap
Deprecated
RESCRIPT
let map: (t, elt => 'b) => typed_array<'b>mapi
Deprecated
RESCRIPT
let mapi: (t, (elt, int) => 'b) => typed_array<'b>reduce
Deprecated
RESCRIPT
let reduce: (t, ('b, elt) => 'b, 'b) => 'breducei
Deprecated
RESCRIPT
let reducei: (t, ('b, elt, int) => 'b, 'b) => 'breduceRight
Deprecated
RESCRIPT
let reduceRight: (t, ('b, elt) => 'b, 'b) => 'breduceRighti
Deprecated
RESCRIPT
let reduceRighti: (t, ('b, elt, int) => 'b, 'b) => 'bsome
Deprecated
RESCRIPT
let some: (t, elt => bool) => boolsomei
Deprecated
RESCRIPT
let somei: (t, (elt, int) => bool) => bool_BYTES_PER_ELEMENT
Deprecated
RESCRIPT
let _BYTES_PER_ELEMENT: intmake
Deprecated
RESCRIPT
let make: array<elt> => tfromBuffer
Deprecated
RESCRIPT
let fromBuffer: array_buffer => tcan throw
fromBufferOffset
Deprecated
RESCRIPT
let fromBufferOffset: (array_buffer, int) => tthrow Js.Exn.Error throw Js exception
param offset is in bytes
fromBufferRange
Deprecated
RESCRIPT
let fromBufferRange: (array_buffer, ~offset: int, ~length: int) => tthrow Js.Exn.Error throws Js exception
param offset is in bytes, length in elements
fromLength
Deprecated
RESCRIPT
let fromLength: int => tfrom
Deprecated
RESCRIPT
let from: array_like<elt> => t