ObjectMap allows mapping of object keys to arbitrary values.

On static targets, the keys are considered to be strong references. Refer to haxe.ds.WeakMap for a weak reference version.

See Map for documentation details.

See also:

Constructor

@:has_untypednew()

Creates a new ObjectMap.

Methods

@:has_untypedexists(key:K):Bool

Available on php, hl, js, flash, cs, neko, python, cpp, java, macro

@:has_untypedexists(key:A):Bool

Available on lua

@:has_untypedget(key:K):Null<V>

Available on php, js, flash, cs, neko, python, cpp, java, macro

get(key:K):Null<T>

Available on hl

@:has_untypedget(key:A):Null<B>

Available on lua

@:has_untypediterator():Iterator<V>

Available on php, js, flash, neko, python, cpp, macro

iterator():Iterator<T>

Available on hl

@:has_untypediterator():Iterator<B>

Available on lua

iterator():Iterator<V>

Available on cs, java

Returns an iterator of all values in the hashtable. Implementation detail: Do not set() any new value while iterating, as it may cause a resize, which will break iteration

@:has_untypedkeys():Iterator<K>

Available on php, hl, js, flash, neko, python, cpp, macro

@:has_untypedkeys():Iterator<A>

Available on lua

keys():Iterator<K>

Available on cs, java

Returns an iterator of all keys in the hashtable. Implementation detail: Do not set() any new value while iterating, as it may cause a resize, which will break iteration

@:has_untypedremove(key:K):Bool

Available on php, hl, js, flash, cs, neko, python, cpp, java, macro

@:has_untypedremove(key:A):Bool

Available on lua

@:has_untypedset(key:K, value:V):Void

Available on php, js, flash, cs, neko, python, cpp, java, macro

set(key:K, value:T):Void

Available on hl

@:has_untypedset(key:A, value:B):Void

Available on lua

toString():String

Available on php, hl, js, flash, lua, neko, python, cpp, macro

toString():String

Available on cs, java

Returns an displayable representation of the hashtable content.