typed-array-interleave
v2.0.1
Published
Interleave n typed arrays.
Downloads
13
Maintainers
Readme
typed-array-interleave
Interleave n typed arrays.
Installation
npm install typed-array-interleave
Usage
import typedArrayInterleave from "typed-array-interleave";
typedArrayInterleave(
Uint8Array,
[3, 2],
Uint8Array.of(1, 2, 3, 4, 5, 6),
Uint8Array.of(7, 8, 9, 10)
);
//=> Uint8Array [1, 2, 3, 7, 8, 4, 5, 6, 9, 10]
API
typedArrayInterleave
typedArrayInterleave(ResultConstructor, elements, ...arrays) ⇒ TypedArray ⏏
Interleave n typed arrays
Kind: Exported function
| Param | Type | Description | | ----------------- | ----------------------- | ------------------------------------------------ | | ResultConstructor | TypedArray | Returned typed array constructor | | elements | Array | Number of elements to group for each typed array | | ...arrays | TypedArray | Arrays to interleave |
License
MIT. See license file.