deque
deque copied to clipboard
Extremely fast double-ended queue implementation
Hi, thank you for your work. It's great. I'd like to use this module for my project. But, I need to copy the deque instance after creation. I guess the...
Bumps [acorn](https://github.com/acornjs/acorn) from 0.3.1 to 7.1.1. Commits 6d19489 Mark release 7.1.1 793c0e5 More rigorously check surrogate pairs in regexp validator b5c1787 Fix incorrect comment in regexp parser 12ae8fe Parameterize dummy...
i am using this in my project , but problem is that i am not getting queue item id , because i want remove item from queue , when user...
Hi Sir, Please help me, how can I resolve this problem? TypeError: Cannot assign to read only property 'isEmpty' of # at Object. (C:\Users\Acer Valued Customer\Documents\Serboy\Coding\Analytics\Analytics.Web\node_modules\double-ended-queue\js\deque.js:185:25) at Module._compile (module.js:409:26) at...
Fixed markdown formatting and punctuation, and made minor grammar and stylistic changes to improve clarity.
`Deque.prototype.set(index, value)` sets the element at `index` to `value`.
Hi @petkaantonov - I'd like to be able to iterate over the elements in a queue without converting it to an array. To do this I need to expose Deque's...
I'm getting significantly faster performance using a native array `this.arr = [];` and replacing all instances of `this[]` with `this.arr[]` . Running the two_million benchmark, I'm getting ~23 milllion ops/s...