standard-data-structures
Version:
A collection of standard data-structures for node and browser
37 lines (23 loc) • 795 B
Markdown
# standard-data-structures
[](https://travis-ci.com/tusharmath/standard-data-structures)

A collection of standard data-structures for node and browser
# Index
- [Installation](#installation)
- [Usage](#usage)
- [Documentation](https://tusharmath.com/standard-data-structures)
# Installation
**npm:**
```bash
npm i standard-data-structures --save
```
**yarn:**
```bash
yarn add standard-data-structures
```
# Usage
```ts
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
```