build function
Overview of Haxe code snippets, examples and tutorials tagged with build function.
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.‥