$hashTable.new

Returns a new and empty hashtable object.
Syntax
    $hashTable.new{}
Documentation$hashTable.new:

This function returns a new and empty hashtable object which can be used by the other hashtable subfunctions.

Alternately the data can be accessed or set via an extension of the $get and $set functions (see example).

If data is set using the normal $set function and the named variable is not a hashtable yet (but no other object) or doesn't exist usage of this function is automatically implied.

    Paramter:
      None.
    Returns:
      A new and empty hashtable object.
    Throws:
      None.
Examples
$set{h}{$hashTable.new{}} $// if h doesn't exist yet this line can be omitted for this example! $set{h(test)}{Hello!} Value for key 'test' is: $get{h(test)}
The hashtable contains $get{h} entry.
GroupSpecial
Minimum required transaction-mode:NONE
Required scripting permission of the developerPERMISSION_FL_BASIC
Minimum parameters0
Maximum parameters 0