top level
| haxe | |
| hxmath | |
| nanotest | |
| neko | |
| test | |
| Array | An Array is a storage for values. You can access it using indexes or with its API. |
| ArrayAccess | ArrayAccess is used to indicate a class that can be accessed using brackets. The type parameter represent the type of the elements stored. |
| Bool | The standard Boolean type, which can either be true or false. |
| Class | An abstract type that represents a Class. |
| Dynamic | Dynamic is a special type which is compatible with all other types. |
| EReg | The EReg class represents regular expressions. |
| Enum | An abstract type that represents an Enum type. |
| EnumValue | An abstract type that represents any enum value.
See |
| Float | The standard Float type, this is a double-precision IEEE 64bit float. |
| Int | The standard Int type. Its precision depends on the platform. |
| Iterable | An Iterable is a data structure which has an iterator() method.
See |
| Iterator | An Iterator is a structure that permits iteration over elements of type T. |
| Map | Map allows key to value mapping for arbitrary value types, and many key types. |
| Math | This class defines mathematical functions and constants. |
| Null |
|
| Reflect | The Reflect API is a way to manipulate values dynamicly through an abstract interface in an untyped manner. Use with care. |
| Std | The Std class provides standard methods for manipulating basic types. |
| String | The basic String class. |
| StringBuf | A String buffer is an efficient way to build a big string by appending small elements together. |
| StringTools | This class provides advanced methods on Strings. It is ideally used with 'using StringTools' and then acts as an extension to the String class. |
| Sys | This class gives you access to many base functionalities of system platforms. Looks in [sys] sub packages for more system APIs. |
| Test | |
| Type | The haxe Reflection API allows retrieval of type information at runtime. |
| Void | The standard Void type. Only |