Package Exports
- ringjs
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (ringjs) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
ring
A simple ring list / buffer for node.js
installation
npm install ring
usage
var Ring = require('ring');
var ring = new Ring(4); // defines a ring of size 4
// push 14 numbers to list (only the last 4 will remain)
for (var i=0; i<14; i++) {
ring.push(i);
}
console.log(ring.toArray()); // [ 10, 11, 12, 13 ]
var o;
while (o = ring.dequeue()) {
console.log(o);
}
// Output:
// 10
// 11
// 12
// 13
console.log(ring.isEmpty);
// Output:
// true
ring.push(1,2,3,4,5,6); // add new numbers to the ring
console.log(ring.toArray().join('\n')); // 3\n4\n5\n6
license
MIT