Js_typed_arrayJavaScript Typed Array API
type array_buffer = Js_typed_array2.array_buffertype 'a array_like = 'a Js_typed_array2.array_likemodule type Type = sig ... endmodule ArrayBuffer : sig ... endThe underlying buffer that the typed arrays provide views of
module type S = sig ... endImplements functionality common to all the typed arrays
module Int8Array : sig ... endmodule Uint8Array : sig ... endmodule Uint8ClampedArray : sig ... endmodule Int16Array : sig ... endmodule Uint16Array : sig ... endmodule Int32Array : sig ... endmodule Int32_array = Int32Arraymodule Uint32Array : sig ... endmodule Float32Array : sig ... endmodule Float32_array = Float32Arraymodule Float64Array : sig ... endmodule Float64_array = Float64Arraymodule 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.