haxe |
js |
sys |
Any | Any is a type that is compatible with any other in both ways.
|
Array | |
ArrayAccess | ArrayAccess is used to indicate a class that can be accessed using brackets.
The type parameter represents 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. |
Date | The Date class provides a basic structure for date and time related
information. Date instances can be created by |
Dynamic | Dynamic is a special type which is compatible with all other types.
|
Enum | An abstract type that represents an Enum type. |
EnumValue | An abstract type that represents any enum value.
See Type for the Haxe Reflection API. |
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 Lambda for generic functions on iterable structures. |
Iterator | An Iterator is a structure that permits iteration over elements of type T . |
KeyValueIterable | A KeyValueIterable is a data structure which has a keyValueIterator()
method to iterate over key-value-pairs. |
KeyValueIterator | A KeyValueIterator is an Iterator that has a key and a value. |
Map | |
Math | |
Null | Null<T> is a wrapper that can be used to make the basic types Int ,
Float and Bool nullable on static targets.
|
Reflect | The Reflect API is a way to manipulate values dynamically 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. |
Void | The standard Void type. Only null values can be of the type Void . |