S
elt
RESCRIPT
type elt
typed_array
RESCRIPT
type typed_array<'a>
t
RESCRIPT
type t = typed_array<elt>
unsafe_get
RESCRIPT
let unsafe_get: (t, int) => elt
unsafe_set
RESCRIPT
let unsafe_set: (t, int, elt) => unit
buffer
RESCRIPT
let buffer: t => array_buffer
byteLength
RESCRIPT
let byteLength: t => int
byteOffset
RESCRIPT
let byteOffset: t => int
length
RESCRIPT
let length: t => int
copyWithinFromRange
RESCRIPT
let copyWithinFromRange: (~to_: int, ~start: int, ~end_: int) => t
includes
RESCRIPT
let includes: elt => bool
filter
RESCRIPT
let filter: (elt => bool) => t
should we use bool
or boolean
seems they are intechangeable here