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

1.0.8 • Public • Published

Welcome to doubly-linked-list 👋

Version Documentation Maintenance

A Doubly Linked list for javascript.

Documentation

Read documentation here.

Install

With Npm

npm install @jeremiah_tenbrink/doubly-linked-list

With Yarn

yarn add @jeremiah_tenbrink/doubly-linked-list

Usage

Add to head

import {DoublyLinkedList} from '@jeremiah_tenbrink/doubly-linked-list';
const dll = DoublyLinkedList();

dll.addToHead("some value");

let dllSize = dll.getSize();
let value = dll.removeFromHead();
console.log(value);

dll.addToTail(45);
dll.addToTail(50);
value = dll.removeFromTail();
console.log(value);

dll.forEach(item => {
  console.log(item);
}).then(result => {
  console.log(result.complete);
}).catch(e => {
  console.log(e.message)
})

dll.forSome(item => {
  console.log(item);
  return true;
}).then(result => {
  console.log(result.complete) // should be false because true was returned in the forSome callback function
}).catch(e => {
  console.log(e.message)
})

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!


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

Readme

Keywords

none

Package Sidebar

Install

npm i @jeremiah_tenbrink/doubly-linked-list

Weekly Downloads

4

Version

1.0.8

License

none

Unpacked Size

305 kB

Total Files

38

Last publish

Collaborators

  • jeremiah_tenbrink