Haxe Code Cookbook

functional programming

Overview of Haxe code snippets, examples and tutorials tagged with functional programming.

  • Jan 03, 2017 Functional Programming /

     enum pattern-matching functional-programming

    As already established Haxe enums are a form of algebraic data types. In fact, they may even serve as so called generalized algebraic data types - GADTs for short. While for an ordinary enum every constructor yields the same type, with an GADT each constructor may yield a different type. ‥