Skip to content

A complete, fully tested and documented data structure library written in JavaScript.

Notifications You must be signed in to change notification settings

jordie/buckets

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

46 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A JavaScript Data Structure Library

Buckets is a complete, fully tested and documented data structure library written in pure JavaScript.

Included data structures

Buckets also includes several functions for manipulating arrays.

Supported platforms

  • Every desktop and mobile browser (including IE6)
  • Node.js

If it supports JavaScript, it probably supports buckets.

How to use?

Download

Include the script and start coding. For NodeJS: var buckets = require('buckets.js').

Example

var setA = new buckets.Set();
var setB = new buckets.Set();
setA.add(1);
setB.add(2);
setA.union(setB); // {1,2}

Read the documentation.

Support

Mauricio Santos, mauriciosantoss@gmail.com

About

A complete, fully tested and documented data structure library written in JavaScript.

Resources

Stars

Watchers

Forks

Packages

No packages published