collections
Overview of Haxe code snippets, examples and tutorials tagged with collections.
Apr 14, 2018 Data structures / A fixed ring array
A fixed ring array is especially useful when you need a hard upper bound for how much data can be in the queue.‥
Oct 13, 2016 Beginner / Using lists
In Haxe, the List type represents a linked-list of elements.‥
Oct 13, 2016 Beginner / Using arrays
In Haxe, the Array type represents a collection of elements ordered by their index (order number) in the collection.‥
Dec 15, 2016 Beginner / Using maps
In Haxe, Map (also known as dictionary) allows key to value mapping for arbitrary value types and many key types. ‥