Object class for emulating a hashtable.| Method Summary | |
|---|---|
| void | Iterates over all the key-value pairs of this hashtable. |
| jsx3.$Array | keys() Returns the list of keys of this hashtable. |
| jsx3.$Array | values() Returns the list of values of this hashtable. |
| Methods Inherited From jsx3.$Object |
|---|
| clone, extend |
| Methods Inherited From Object |
|---|
| toString |
| Method Detail |
|---|
fct is called for each pair; the pair key
is the first parameter and the pair value is the second parameter.function(key : String, value: Object} : void