The minimum size required by the deque. The actual capacity will be the next largest power-of-two.
The TypedArray backing store for the deque. Defaults to Float64Array, making it naturally compatible with the native Number type.
Get the current length of elements in the deque.
A double-ended queue, or deque, is a data-structure that support both stack and queue semantics. This NumericDeque is implemented as fixed-length circular buffer that is backed by a TypedArray for fast, efficient performance.
Example: A basic deque of numbers
Example: A deque of 1,024 bytes