Provides a strongly typed implementation of a key/value pairs
protected var _key:*
key:*
[read-write]
Retrieves the value of the key
property of the
IHashMapEntry
implementation.
Implementation
public function get key():*
public function set key(value:*):void
protected var _value:*
value:*
[read-write]
Retrieves the value of the value
property of an
IHashMapEntry
implementation.
Implementation
public function get value():*
public function set value(value:*):void
public function HashMapEntry(key:*, value:*)
HashMapEntry
constructor accepts values for
the key
and value
properties of
an IHashMapEntry
Parameters
| key:* — to assign to the key property
|
|
| value:* — to assign to the value property
|