standard-data-structures

A collection of standard data-structures for node and browser


Keywords
data, structures, performance
License
ISC
Install
npm install standard-data-structures@4.0.0

Documentation

standard-data-structures

Build Status npm

A collection of standard data-structures for node and browser

Index

Installation

npm:

npm i standard-data-structures --save

yarn:

yarn add standard-data-structures

Usage

import {immutable} from 'standard-data-structures'

const list = immutable.List.of(10) // creates a singly linked list

list.forEach(console.log) // runs the specified function on each item of the list