deque icon indicating copy to clipboard operation
deque copied to clipboard

Extremely fast double-ended queue implementation

Results 15 deque issues
Sort by recently updated
recently updated
newest added

Adding a .next will allow a deque to be iterated over by for...of loops and the like.

This commit adds entries(), keys(), and values() iterators

Six months should be long enough to be confident this release is safe, don't you think? :) This came up because of a bug involving `npm`, `semver`, `read-installed`, and prerelease...

This commit fixes `npm test`. The pre-test lint task was attempting to use newer versions of jshint-stylish reporter with breaking API - Add missing grunt-bump - Specify more precise jshint-stylish...

Hi, it would be nice if we could specify a maximum length for the queue. If you push onto a full queue, it pops from the end, never increasing in...