@esfx/collections-linkedlist
TypeScript icon, indicating that this package has built-in type declarations

1.0.2 • Public • Published

@esfx/collections-linkedlist

The @esfx/collections-linkedlist package provides a linked-list implementation that utilizes @esfx/collection-core and @esfx/equatable.

Overview

Installation

npm i @esfx/collections-linkedlist

Usage

import { LinkedList } from "equatable/collections-linkedlist";

const list = new LinkedList();
const n1 = list.push("first");
const n2 = list.push("second");
n2.value = "second updated";
[...list]; // first,second updated

API

You can read more about the API here.

/@esfx/collections-linkedlist/

    Package Sidebar

    Install

    npm i @esfx/collections-linkedlist

    Weekly Downloads

    351

    Version

    1.0.2

    License

    Apache-2.0

    Unpacked Size

    145 kB

    Total Files

    9

    Last publish

    Collaborators

    • rbuckton