IntMap allows mapping of Int keys to arbitrary values.

See Map for documentation details.

See also:

Constructor

@:has_untypednew()

Creates a new IntMap.

Methods

@:has_untypedclear():Void

@:has_untypedexists(key:Int):Bool

@:has_untypedget(key:Int):Null<T>

@:has_untypediterator():Iterator<T>

See Map.iterator

(cs, java) Implementation detail: Do not set() any new value while iterating, as it may cause a resize, which will break iteration.

@:has_untypedkeys():Iterator<Int>

See Map.keys

(cs, java) Implementation detail: Do not set() any new value while iterating, as it may cause a resize, which will break iteration.

@:has_untypedremove(key:Int):Bool

@:has_untypedset(key:Int, value:T):Void