Bit-TypedArray
Bit-TypedArray copied to clipboard
A BitArray object exhibiting the interface of standard ecmascript TypedArray's
Current code only partially implements standard features of typed arrays. This issue provides a place to track progress and view it all in one shot. PRs welcome! ## Constructor -...
Typed array constructors can take an ArrayBuffer instance as single argument. E.g.: ```js let buffer = new ArrayBuffer(12); new Uint32Array(buffer); ``` The length of the typed array is the length...
``` > import BitArray from "@bitarray/typedarray" undefined > let d = new BitArray([0,1,1], 0, 10) .ts:5:31 - error TS2554: Expected 1 arguments, but got 3. ```` BitArray doesn't seem to...
Bumps [typescript](https://github.com/microsoft/TypeScript) from 5.5.4 to 5.6.2. Release notes Sourced from typescript's releases. TypeScript 5.6 For release notes, check out the release announcement. For the complete list of fixed issues, check...