Skip to content
thomasstjerne edited this page Aug 7, 2012 · 2 revisions

Table of Contents

js_cols

js_cols is a JavaScript collections library providing implementations of Lists, FIFO queues, LIFO Stacks, Priority Queues, sorted and unsorted Sets and Maps, Bags (Multi Sets) and Multi Maps.
The goal of the project is to add functionality to the JavaScript language, similar to that of java.util.Collections (for Java) and the C5 Library (for C#).
The Library stands alone and should be easy integratable in all kinds of JavaScript projects.
Even though the js_cols library is independent of other libraries, it integrates especially well with the google closure library, as method names generally correspond to the generic collection operations of goog.structs. This also includes the way goog.structs support closures.

Get js_cols

git clone https://github.com/thomasstjerne/js_cols.git

Extend google closure library with js_cols

If you are already using google closure library, you can use the js_cols extension package for closure library.

Get started

Learn how to get started using the js_cols library

How do I learn more?

Browse the online documentation.