dataset - ActionScript: Library implementing a 'set' datatype? -


has implemented set class in actionscript? specifically, set similar python's set implementation (unordered, unique, o(1) membership, etc).

i'd able iterate on using for each, perform operations union , intersection , list of contained items… possible implement using dictionary , proxy, i'd rather not reimplement if someone's done heavy lifting.

this looks decent enough implementation.

link collection class


Comments

Popular posts from this blog

ruby - When to use an ORM (Sequel, Datamapper, AR, etc.) vs. pure SQL for querying -

php - PHPDoc: @return void necessary? -

c++ - Convert big endian to little endian when reading from a binary file -