standard-data-structures
v4.0.0
Published
A collection of standard data-structures for node and browser
Downloads
16,501
Maintainers
Readme
standard-data-structures
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