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

new()

Creates a new ObjectMap.

Methods

@:has_untypedclear():Void

copy():ObjectMap<K, V>

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

copy():ObjectMap<A, B>

Available on lua

copy():ObjectMap<K, T>

Available on hl

@:has_untypedexists(key:K):Bool

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

@:has_untypedinlineexists(key:A):Bool

Available on lua

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

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

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

Available on lua

get(key:K):Null<T>

Available on hl

iterator():Iterator<V>

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

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_untypediterator():Iterator<B>

Available on lua

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.

iterator():Iterator<T>

Available on hl

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.

@:runtimeinlinekeyValueIterator():KeyValueIterator<K, V>

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

@:runtimeinlinekeyValueIterator():KeyValueIterator<A, B>

Available on lua

@:runtimeinlinekeyValueIterator():KeyValueIterator<K, T>

Available on hl

keys():Iterator<K>

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

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_untypedkeys():Iterator<A>

Available on lua

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:K):Bool

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

@:has_untypedremove(key:A):Bool

Available on lua

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

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

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

Available on lua

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

Available on hl

Inherited Variables

Inherited Methods