Js.Typed_arrayProvide bindings for JS typed array
JavaScript Typed Array API
module type Type = { ... };module ArrayBuffer: { ... };The underlying buffer that the typed arrays provide views of
module type S = { ... };Implements functionality common to all the typed arrays
module Int8Array: { ... };module Uint8Array: { ... };module Uint8ClampedArray: { ... };module Int16Array: { ... };module Uint16Array: { ... };module Int32Array: { ... };module Int32_array = Int32Array;module Uint32Array: { ... };module Float32Array: { ... };module Float32_array = Float32Array;module Float64Array: { ... };module Float64_array = Float64Array;module DataView: { ... };The DataView view provides a low-level interface for reading and writing multiple number types in an ArrayBuffer irrespective of the platform's endianness.