/ stream.nieuweinstituut.nl / node_modules / cyclist /

[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[   ]LICENSE10 years ago1.1K 
[TXT]README.md10 years ago1.2Kd768d73 docs [كارل مبارك]
[   ]index.js10 years ago683 3e510ca test new git [كارل مبارك]
[   ]package.json2 years ago1.4K3e510ca test new git [كارل مبارك]
[   ]test.js10 years ago743  
README.md

Cyclist

Cyclist is an efficient cyclic list implemention for Javascript. It is available through npm

npm install cyclist

build status

What?

Cyclist allows you to create a list of fixed size that is cyclic. In a cyclist list the element following the last one is the first one. This property can be really useful when for example trying to order data packets that can arrive out of order over a network stream.

Usage

var cyclist = require('cyclist')
var list = cyclist(4)

list.put(42, 'hello 42') // store something and index 42
list.put(43, 'hello 43') // store something and index 43

console.log(list.get(42)) // prints hello 42
console.log(list.get(46)) // prints hello 42 again since 46 - 42 == list.size

API

License

MIT

Apache/2.4.38 (Debian) Server at www.karls.computer Port 80