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 exists(key:Int):Bool
See Map.exists
Map.exists
function get(key:Int):Null<T>
See Map.get
Map.get
function iterator():Iterator<T>
See Map.iterator
Map.iterator
function keys():Iterator<Int>
See Map.keys
Map.keys
function remove(key:Int):Bool
See Map.remove
Map.remove
function set(key:Int, value:T):Void
See Map.set
Map.set
function toString():String
See Map.toString
Map.toString