$hashTable.removeKey

Removes an entry from a hashtable.
Syntax
    $hashTable.removeKey{hashtable}{key}
Documentation$hashTable.removeKey:
Removes the key given by parameter 2 and it's value from the hashtable given in parameter 1. It is no error if the key does not exist in the hashtable.
    Paramter:
      1: The hashtable.
      2: The key.
    Returns:
      None.
    Throws:
      IllegalArgumentException if the object in parameter 1 is not a hashtable.
Examples
$set{h}{$hashTable.new{}} $set{h(test)}{Hello!} $hashTable.removeKey{$get{h}}{test} Hashtable size: $get{h}
GroupSpecial
Minimum required transaction-mode:NONE
Required scripting permission of the developerPERMISSION_FL_BASIC
Minimum parameters2
Maximum parameters 2