Skip to content

Latest commit

 

History

History
36 lines (23 loc) · 795 Bytes

README.md

File metadata and controls

36 lines (23 loc) · 795 Bytes

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