0.1.2 • Published 11 months ago

doubly-linky v0.1.2

Weekly downloads
-
License
MIT
Repository
-
Last release
11 months ago

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

0.1.2

11 months ago

0.1.1

11 months ago

0.1.0

11 months ago