class haxe.ds.ObjectMap<K, V> extends Dictionary

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.

Instance Fields

Show inherited public instance fieldsHide inherited public instance fields

Inherited from Dictionary

function new(): Void

Creates a new ObjectMap.

function iterator(): Iterator<V>

function remove(key:K): Bool