-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdemos.js
38 lines (34 loc) · 1.64 KB
/
demos.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/**
*
* Package: queues.js
* Author: Ganesh B
* Description:
* Install: npm i queues.js --save
* Github: https://github.com/ganeshkbhat/queues.js
* npmjs Link: https://www.npmjs.com/package/queues.js
* File: .js
* File Description: .js
*
*/
/* eslint no-console: 0 */
'use strict';
const { Base, BaseLowFootprint, AsyncBase, AsyncBaseLowFootPrint,
Queue, QueueLowFootprint, QueueLifo, QueueFifo, QueueLowFootprintLifo, QueueLowFootprintFifo,
AsyncQueue, AsyncQueueLowFootprint,
QueueTop, QueueTopLowFootprint, QueueTopLifo, QueueTopFifo, QueueTopLowFootprintLifo, QueueTopLowFootprintFifo,
AsyncQueueTop, AsyncQueueTopLowFootprint,
Stack, StackLowFootprint,
AsyncStack, AsyncStackLowFootprint,
DoubleEnded, DoubleEndedLowFootprint, AsyncDoubleEnded, AsyncDoubleEndedLowFootprint,
Priority, PriorityLowFootprint, AsyncPriority, AsyncPriorityLowFootprint,
Circular, AsyncCircular, Semaphore, WaitQueue } = require("../index.js");
console.log(Base, BaseLowFootprint, AsyncBase, AsyncBaseLowFootPrint,
Queue, QueueLowFootprint, QueueLifo, QueueFifo, QueueLowFootprintLifo, QueueLowFootprintFifo,
AsyncQueue, AsyncQueueLowFootprint,
QueueTop, QueueTopLowFootprint, QueueTopLifo, QueueTopFifo, QueueTopLowFootprintLifo, QueueTopLowFootprintFifo,
AsyncQueueTop, AsyncQueueTopLowFootprint,
Stack, StackLowFootprint,
AsyncStack, AsyncStackLowFootprint,
DoubleEnded, DoubleEndedLowFootprint, AsyncDoubleEnded, AsyncDoubleEndedLowFootprint,
Priority, PriorityLowFootprint, AsyncPriority, AsyncPriorityLowFootprint,
Circular, AsyncCircular, Semaphore, WaitQueue)