Module Js.Typed_array

Bindings to the functions in TypedArray.prototype

JavaScript Typed Array API

type array_buffer;
module ArrayBuffer: { ... };

The underlying buffer that the typed arrays provide views of

module Int8Array: { ... };
module Uint8Array: { ... };
module Uint8ClampedArray: { ... };
module Int16Array: { ... };
module Uint16Array: { ... };
module Int32Array: { ... };
module Uint32Array: { ... };
module Float32Array: { ... };
module 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.