haxe.ds

..
IntMap

IntMap allows mapping of Int keys to arbitrary values.

List

A linked-list of elements. The list is composed of element container objects that are chained together. It is optimized so that adding or removing an element does not imply copying the whole list content every time.

Map

Map allows key to value mapping for arbitrary value types, and many key types.

ReadOnlyArray

ReadOnlyArray is an abstract over an ordinary Array which only exposes APIs that don't modify the instance, hence "read-only".

StringMap

StringMap allows mapping of String keys to arbitrary values.

TreeNode

A tree node of haxe.ds.BalancedTree.