JavaScript implementation of a set data structure
Posted
by Tim Molendijk
on Stack Overflow
See other posts from Stack Overflow
or by Tim Molendijk
Published on 2010-03-26T13:13:56Z
Indexed on
2010/03/26
13:53 UTC
Read the original article
Hit count: 358
I'm looking for a decent implementation of a set data structure in JavaScript. It should be able to support elements that are plain JavaScript objects.
So far I only found Closure Library's structs.Set, but I don't like the fact that it modifies my data.
Any ideas?
© Stack Overflow or respective owner