Concatenates multiple Uint8Array instances into a single ByteArray.
The arrays to concatenate.
A new ByteArray containing all input arrays concatenated in order.
const result = concatUint8Arrays( new Uint8Array([1, 2]), new Uint8Array([3, 4])) // Returns Uint8Array([1, 2, 3, 4]) Copy
const result = concatUint8Arrays( new Uint8Array([1, 2]), new Uint8Array([3, 4])) // Returns Uint8Array([1, 2, 3, 4])
Concatenates multiple Uint8Array instances into a single ByteArray.