3

I'm writing a client program for a game in Javascript but I'm new in Javascript world. Core Javascript lack of high level data structures.

I've found code snippets on internet but I'm looking for a reference library (like commons-collection or google-collection in java world).

I found this post: JavaScript implementation of a set data structure which refers to jshashtable and closure.

Are they reference implementations? Do you know something else?

Thanks

Community
  • 1
  • 1
user355056
  • 31
  • 1
  • Google closure library has `goog.structs.*` - http://code.google.com/p/closure-library/source/browse/#svn/trunk/closure/goog/structs – Chetan S Jun 01 '10 at 04:54

3 Answers3

0

http://jsclass.jcoglan.com/ gives you everything Ruby has, which is a lot.

quikchange
  • 564
  • 2
  • 6
  • 14
0

https://github.com/js-sdsl/js-sdsl

A javascript standard data structure library which benchmark against C++ STL.

Zilong Yao
  • 54
  • 4
  • While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. - [From Review](/review/late-answers/33367605) – Vojin Purić Dec 13 '22 at 15:16