function BitRing()

in bit-ring.js [1:7]


function BitRing(capacity) {
    this.capacity = capacity;
    this.bits = new Uint8ClampedArray(capacity);
    this.pos = 0;
    this.length = 0;
    this._count = 0;
}