@types/js-priority-queue
TypeScript icon, indicating that this package has built-in type declarations

0.0.9 • Public • Published

Installation

npm install --save @types/js-priority-queue

Summary

This package contains type definitions for js-priority-queue (https://github.com/adamhooper/js-priority-queue).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/js-priority-queue.

index.d.ts

/* =================== USAGE ===================
    import * as PriorityQueue from "js-priority-queue";
    var queue = new PriorityQueue<number>({ comparator: (a, b) => b - a });
    queue.queue(5);
 =============================================== */

declare module "js-priority-queue" {
    class AbstractPriorityQueue<T> {
        /**
         * Returns the number of elements in the queue
         */
        public length: number;
        /**
         * Creates a priority queue
         */
        constructor(options?: PriorityQueue.PriorityQueueOptions<T>);
        /**
         * Inserts a new value in the queue
         */
        public queue(value: T): void;
        /**
         * Returns the smallest item in the queue and leaves the queue unchanged
         */
        public peek(): T;
        /**
         * Returns the smallest item in the queue and removes it from the queue
         */
        public dequeue(): T;
        /**
         * Removes all values from the queue
         */
        public clear(): void;
    }
    namespace PriorityQueue {
        type PriorityQueueOptions<T> = {
            /**
             * This is the argument we would pass to Array.prototype.sort
             */
            comparator?: ((a: T, b: T) => number) | undefined;
            /**
             * You can also pass initial values, in any order.
             * With lots of values, it's faster to load them all at once than one at a time.
             */
            initialValues?: T[] | undefined;
            /**
             * According to JsPerf, the fastest strategy for most cases is BinaryHeapStrategy.
             * Only use ArrayStrategy only if you're queuing items in a very particular order.
             * Don't use BHeapStrategy, except as a lesson in how sometimes miracles in one programming language aren't great in other languages.
             */
            strategy?: typeof AbstractPriorityQueue | undefined;
        };
        class ArrayStrategy<T> extends AbstractPriorityQueue<T> {}
        class BinaryHeapStrategy<T> extends AbstractPriorityQueue<T> {}
        class BHeapStrategy<T> extends AbstractPriorityQueue<T> {}
    }
    class PriorityQueue<T> extends AbstractPriorityQueue<T> {}
    export = PriorityQueue;
}

Additional Details

  • Last updated: Tue, 07 Nov 2023 03:09:37 GMT
  • Dependencies: none

Credits

These definitions were written by York Yao.

Readme

Keywords

none

Package Sidebar

Install

npm i @types/js-priority-queue

Weekly Downloads

492

Version

0.0.9

License

MIT

Unpacked Size

7.14 kB

Total Files

5

Last publish

Collaborators

  • types