npm stats
  • Search
  • About
  • Repo
  • Sponsor
  • more
    • Search
    • About
    • Repo
    • Sponsor

Made by Antonio Ramirez

minimal-bit-array

1.0.0

@mikolalysenko

npmHomeRepoSnykSocket
Downloads:26
$ npm install minimal-bit-array
DailyWeeklyMonthlyYearly

minimal-bit-array

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

testling badge

build status

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