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

copy():ObjectMap<K, T>

Available on hl

copy():ObjectMap<K, V>

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

copy():ObjectMap<A, B>

Available on lua

exists(key:K):Bool

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

@:has_untypedexists(key:A):Bool

Available on lua

get(key:K):Null<T>

Available on hl

get(key:K):Null<V>

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

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

Available on lua

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.

@:ifFeature("dynamic_read.iterator","anon_optional_read.iterator","anon_read.iterator")iterator():Iterator<V>

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

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.

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

Available on hl

@:ifFeature("dynamic_read.keyValueIterator","anon_optional_read.keyValueIterator","anon_read.keyValueIterator")inlinekeyValueIterator():KeyValueIterator<K, V>

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

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

Available on lua

keys():Iterator<K>

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

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.

remove(key:K):Bool

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

@:has_untypedremove(key:A):Bool

Available on lua

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

Available on hl

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

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

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

Available on lua