class js.html.ArrayBufferView
Available on js
Sub classes | ||||||||||||||||||||
![]() | DataView, Float32Array, Float64Array, Int16Array, Int32Array, Int8Array, Uint16Array, Uint32Array, Uint8Array |
|
The ArrayBufferView
type describes a particular view on the contents of an ArrayBuffer
's data.
Of note is that you may create multiple views into the same buffer, each looking at the buffer's contents starting at a particular offset. This makes it possible to set up views of different data types to read the contents of a buffer based on the types of data at specific offsets into the buffer.
Documentation for this class was provided by MDN.