concat(arrays: Uint8Array[]): Uint8Array
Fast-concatenate Uint8Array arrays into a single array.
Optimized to avoid unnecessary copying:
- Returns empty array for empty input
- Returns the original array if only one element (no copy)
- Otherwise performs efficient concatenation
arrays: Uint8Array[]
The arrays to concatenate.
The concatenated result.