Socket
Book a DemoInstallSign in
Socket

cavalcade

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cavalcade

A set of queue-like data structures

latest
Source
npmnpm
Version
1.0.0
Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

cavalcade

cavalcade provides a set of queue-like data structures.

Install

$ npm install --save cavalcade

Example

const cavalcade = require('cavalcade')
const fifoQueue = cavalcade.fifoQueue(4, [1, 2, 3, 4])

fifo.size // 4
fifo.length // 4

fifo.pop() // 1
fifo.size // 4
fifo.length // 3
// queue: [null, 4, 3, 2]

fifo.push(5)
// queue: [5, 4, 3, 2]

fifo.push(6)
// queue: [6, 5, 4, 3]

fifo.pop() // 3

Queues

  • cavalcade.fifoQueue(size: number, initial: array): Provides a "first in first out" queue of a given size (or 16 slots) with an optional set of initial values. Items are automatically dequeued when the queue is full and a new item is added.

    Supports the following properties/methods:

    • size: the number or slots allocated to the queue. This will not change after initialization.
    • length: the number of items in the queue. This will change with enqueues and dequeues.
    • push(item): adds an item to the queue.
    • pop(): retrieves and removes the first item in the queue. Returns null if there are no items available.
    • values(): returns an iterator that can be used to examine the values in the queue without modifying the queue. Note: if the queue changes while you are iterating it the values may not be what you are expecting.
    • [@@iterator]: returns the same iterator as values()
  • cavalcade.lifoQueue(size: number, initial: array): Provides a "last in first out" queue, or stack, of a given size (or 16 slots) with an optional set of initial values. Items are automatically dequeued when the queue is full and a new item is added.

    Supports the following properties/methods:

    • size: the number or slots allocated to the queue. This will not change after initialization.
    • length: the number of items in the queue. This will change with enqueues and dequeues.
    • push(item): adds an item to the queue.
    • pop(): retrieves and removes the first item in the queue. Returns null if there are no items available.
    • values(): returns an iterator that can be used to examine the values in the queue without modifying the queue. Note: if the queue changes while you are iterating it the values may not be what you are expecting.
    • [@@iterator]: returns the same iterator as values()

License

MIT License

Keywords

queue

FAQs

Package last updated on 14 Jun 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts