Options
All
  • Public
  • Public/Protected
  • All
Menu

standard-data-structures

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

Generated using TypeDoc