class haxe.ds.IntMap<T>

IntMap allows mapping of Int keys to arbitrary values.

See Map for documentation details.

Instance Fields

function new(): Void

Creates a new IntMap.

function exists(key:Int): Bool

function get(key:Int): Null<T>

function iterator(): Iterator<T>

function keys(): Iterator<Int>

function remove(key:Int): Bool

function set(key:Int, value:T): Void