Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Collections in Adobe Flex

Is there any open source collection framework, written in ActionScript that would emulate HashMap, HashSet, LinkedHashMap and LinkedHashSet Java class implementations.

like image 293
Roman Kagan Avatar asked Jun 11 '09 05:06

Roman Kagan


2 Answers

AS3Commons Collections include (besides others):

  • ArrayList, SortedList
  • Set, LinkedSet, SortedSet
  • Map, LinkedMap, SortedMap
  • LinkedList, Treap

The project is currently the first address for a serious AS collections framework: It consists of a high level framework architecture, the most comprehensive set of different collections and the fastest collection implementations. Additionally, most of the collections come in a bindable version to be connected to user interfaces.

AS3Commons Collections | .../as3commons-collections/

Collections Performance Tests | .../collections-framework-performance-comparision/

AS3Commons Organization | http://as3commons.org/

And, yes, I am the author :-)

like image 139
Kaken Bok Avatar answered Oct 21 '22 15:10

Kaken Bok


Eric Feminella's HashMap is very nice.

like image 20
Joel Hooks Avatar answered Oct 21 '22 14:10

Joel Hooks