OverviewSingleDeprecatedPropertiesEventsXSL Parameters

jsx3

class $Hash

Object
->jsx3.$Object
  ->jsx3.$Hash

class $Hash
extends jsx3.$Object
Useful extensions to the JavaScript Object class for emulating a hashtable.

Since:

3.7

Method Summary
void
each(fct : Function)
Iterates over all the key-value pairs of this hashtable.
jsx3.$Array
Returns the list of keys of this hashtable.
jsx3.$Array
Returns the list of values of this hashtable.
Methods Inherited From jsx3.$Object
clone, extend
Methods Inherited From Object
toString
Method Detail

each

void each(fct : Function)
Iterates over all the key-value pairs of this hashtable. fct is called for each pair; the pair key is the first parameter and the pair value is the second parameter.

Parameters:

fctfunction(key : String, value: Object} : void

keys

jsx3.$Array keys()
Returns the list of keys of this hashtable.

Returns:

 

values

jsx3.$Array values()
Returns the list of values of this hashtable.

Returns: