Module Js_typed_array2

JavaScript Typed Array API

type array_buffer;
type array_like('a);
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.