Js.TypedArray2Provide bindings for JS typed array
JavaScript Typed Array API
module ArrayBuffer : sig ... endThe underlying buffer that the typed arrays provide views of
module Int8Array : sig ... endmodule Uint8Array : sig ... endmodule Uint8ClampedArray : sig ... endmodule Int16Array : sig ... endmodule Uint16Array : sig ... endmodule Int32Array : sig ... endmodule Uint32Array : sig ... endmodule Float32Array : sig ... endmodule Float64Array : sig ... endmodule DataView : sig ... endThe DataView view provides a low-level interface for reading and writing multiple number types in an ArrayBuffer irrespective of the platform's endianness.