class haxe.ds.IntMap<T> implements IMap<Int, T>
Available on all platforms
IntMap allows mapping of Int keys to arbitrary values.
See Map for documentation details.
Map
function new():Void
Creates a new IntMap.
function keys():Iterator<Int>
See Map.keys
Map.keys
function remove(key:Int):Bool
See Map.remove
Map.remove