Skip to content
/ list Public

Immutable lists in JavaScript without [] and {}

License

Notifications You must be signed in to change notification settings

antonmedv/list

Repository files navigation

@medv/list

Build Status

Immutable lists in JavaScript without [] and {}

Install

npm install @medv/list

Usage

This implementation requires tail calls optimization which for now available only in Safari and in node only with --harmony-tailcalls flag.

const {list, reverse, print} = require('@medv/list')

const a = list(1, list(2, list(3)))
const b = reverse(a)

print(a) // (1 2 3)
print(b) // (3 2 1)

For all available functions and documentation see index.js

License

MIT

About

Immutable lists in JavaScript without [] and {}

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Sponsor this project

 

Packages

No packages published