Skip to content

Latest commit

 

History

History
33 lines (20 loc) · 619 Bytes

README.md

File metadata and controls

33 lines (20 loc) · 619 Bytes

doubly-linky

A small TypeScript implementation of a doubly linked list.

Installation

This package is ESM only, targeting ES6.

npm install doubly-linky

Usage

import { DoublyLinkedList } from 'doubly-linky';

const list = new DoublyLinkedList(1, 2, 3);

// Item type can also be specified.
const list = new DoublyLinkedList<number>();

// Initializing with an array.
const list = new DoublyLinkedList(array);

API

As documented in API.md.

License

MIT