minimal-bit-array

Minimal bit array that supports ndarray's accessors

MIT License

Downloads
1.8K
Stars
10
Committers
2

minimal-bit-array

A minimalistic bit array implementation that is compatible with ndarray's internals.

Example

var BitArray = require("minimal-bit-array")
var x = new BitArray(100)

x.set(5, true)

console.log(x.get(4))     //Prints false
console.log(x.get(5))     //Prints true

Install

npm install minimal-bit-array

API

var BitArray = require("minimal-bit-array")

BitArray(length)

Creates a bit array with the given length

array.get(i)

Retrieves the bit at location i

array.set(i, v)

Sets the bit at location i to v

array.toJSON()

Serializes the array to a JSON object

BitArray.fromJSON(x)

Deserializes a JSON object into a bit array.

Credits

(c) 2013 Mikola Lysenko. MIT License

Package Rankings
Top 8.78% on Npmjs.org
Badges
Extracted from project README
testling badge build status