The Javascript Uint16Array set()
method stores values in the typed array.
Uint16Array.set(array[, offset]) Uint16Array.set(Uint16Array[, offset])
Parameter | Optional | Meaning |
---|---|---|
array | Required | The array from which to copy values. |
Uint16Array | Required | If the source array to copy |
offset | Optional | The offset into the target array to begin writing values. If you omit this value, 0 is assumed. |
Using set()
var buffer = new ArrayBuffer(8); var uint8 = new Uint16Array(buffer); uint8.set([1, 2, 3], 3); console.log(uint8); // Uint16Array [ 0, 0, 0, 1, 2, 3, 0, 0 ]