collections
Overview of Haxe code snippets, examples and tutorials tagged with collections.
Oct 13, 2016 Beginner / Using lists
In Haxe, the List type represents a linked-list of elements.‥
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. ‥
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.‥
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.‥