An open API service indexing awesome lists of open source software.

https://github.com/suhdev/stickyants-bitset-js

A simple Bit vector library that mirrors Java's BitSet class.
https://github.com/suhdev/stickyants-bitset-js

Last synced: 9 months ago
JSON representation

A simple Bit vector library that mirrors Java's BitSet class.

Awesome Lists containing this project

README

          

# stickyants-bitset-js

A simple utlity library to work with Bit vectors. The library is built to mirror Java's BitSet class.

## Usage

```javascript

impor { BitSet } from 'stickyants-bitset-js';

var bs = new BitSet();

bs.set(1);
bs.set(0);
bs.set(100);

bs.isSet(100) //true
bs.isClear(101) //true

```