IntMap allows mapping of Int keys to arbitrary values.
See Map for documentation details.
Map
See:
https://haxe.org/manual/std-Map.html
new ()
Creates a new IntMap.
exists (key:Int):Bool
See Map.exists
Map.exists
get (key:Int):Null<T>
See Map.get
Map.get
iterator ():Iterator<T>
See Map.iterator
Map.iterator
keys ():Iterator<Int>
See Map.keys
Map.keys
remove (key:Int):Bool
See Map.remove
Map.remove
set (key:Int, value:T):Void
See Map.set
Map.set