data structures
Overview of Haxe code snippets, examples and tutorials tagged with data structures.
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.‥
Oct 30, 2016 Beginner / Using enum / ADT
Haxe's enumeration types are algebraic data types. Their primary use is for describing data structures.‥
Aug 31, 2017 Beginner / Pattern matching
This article helps to learn pattern matching and all of its type of matching in practice. The article covers basic matching, variable capture, guards, extractors and enum/structure matching.‥
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. ‥