| geometryxd | 
| haxe | 
| Array | An Array is a storage for values. You can access it using indexes or
with its API. | 
| ArrayAccess | ArrayAccessis 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 trueorfalse. | 
| Class | An abstract type that represents a Class. | 
| Dynamic | Dynamicis 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 Typefor the Haxe Reflection API. | 
| Float | The standard Floattype, this is a double-precision IEEE 64bit float. | 
| Int | The standard Inttype. Its precision depends on the platform. | 
| Iterable | An Iterableis a data structure which has aniterator()method.
SeeLambdafor generic functions on iterable structures. | 
| Iterator | An Iteratoris a structure that permits iteration over elements of typeT. | 
| Math | This class defines mathematical functions and constants. | 
| Null | Nullcan be useful in two cases. In order to document some methods
that accept or can return anullvalue, or for the Flash compiler and AS3
generator to distinguish between base values that can benulland others that
can't.
 | 
| Std | The Std class provides standard methods for manipulating basic types. | 
| String | The basic String class. | 
| Type | The Haxe Reflection API allows retrieval of type information at runtime. | 
| Void | The standard Voidtype. Onlynullvalues can be of the typeVoid. |