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

1.0.6 • Public • Published

Welcome to @jeremiah_tenbrink/queue 👋

Version Documentation Maintenance License: MIT

Queue using a doubly linked list.

@jeremiah_tenbrink/doubly-linked-list

Install

With Npm

npm install @jeremiah_tenbrink/queue

With yarn

yarn add @jeremiah_tenbrink/queue

Usage

import {Queue} from "@jeremiah_tenbrink/queue";

const q = new Queue();
q.enqueue('some value')
q.enqueue('another value')

while (!q.isEmpty()){
  const current = q.dequeue();
  console.log(current)
}

Author

👤 Jeremiah Tenbrink

🤝 Contributing

Contributions, issues and feature requests are welcome!
Feel free to check issues page.

Show your support

Give a ⭐️ if this project helped you!

📝 License

Copyright © 2020 Jeremiah Tenbrink.
This project is MIT licensed.


This README was generated with ❤️ by readme-md-generator

Readme

Keywords

none

Package Sidebar

Install

npm i @jeremiah_tenbrink/queue

Weekly Downloads

1

Version

1.0.6

License

MIT

Unpacked Size

200 kB

Total Files

28

Last publish

Collaborators

  • jeremiah_tenbrink