/ never-odd-or-even / back / node_modules / denque /

[ICO]NameLast modifiedSizeDescription
[PARENTDIR]Parent Directory  -  
[TXT]CHANGELOG.md40 years ago142  
[   ]LICENSE40 years ago595  
[TXT]README.md40 years ago2.8K 
[TXT]index.d.ts40 years ago727  
[   ]index.js40 years ago 11K 
[   ]package.json2 years ago2.4K 
README.md

Denque

NPM downloads NPM version Tests status Coverage License Follow on Twitter

Denque is a well tested, extremely fast and lightweight double-ended queue implementation with zero dependencies and includes TypeScript types.

Double-ended queues can also be used as a:

This implementation is currently the fastest available, even faster than double-ended-queue, see the benchmarks.

Every queue operation is done at a constant O(1) - including random access from .peekAt(index).

Works on all node versions >= v0.10

Quick Start

Install the package:

npm install denque

Create and consume a queue:

const Denque = require("denque");

const denque = new Denque([1,2,3,4]);
denque.shift(); // 1
denque.pop(); // 4

See the API reference documentation for more examples.


Who's using it?

... and many more.


License


Built and maintained by Invertase.

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