array
Overview of Haxe code snippets, examples and tutorials tagged with array.
Mar 22, 2016 Data structures / Sorting arrays
Sort an array of values‥
Jan 03, 2017 Macros / Generating Arrays with values
Sometimes it is useful make your arrays compile-time, for example to embed data from files, to pre-calculate heavy calculations, generating lookup tables and other similar things. With macros this is perfectly doable but requires some basic knowledge of expression building. In this article you will find out how to build arrays and return them as expressions in a macro function.‥
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.‥