$hashTable.containsKey

Returns whether a hashtable object contains a given key.
Syntax
    $hashTable.containsKey{hashtable}{key}
Documentation$hashTable.containsKey:

Returns whether the hashtable object given by parameter 1 contains the key given by parameter 2.
    Paramter:
      1: The hashtable object.
      2: The key in question.
    Returns:
      Boolean.
    Throws:
      IllegalArgumentException if parameter 1 is not a hashtable.
Examples
$set{h}{$hashTable.new{}} $set{h(test)}{Hello!} $if{$hashTable.containsKey{$get{h}}{test}} { Got the key! } { Don't have! }
GroupSpecial
Minimum required transaction-mode:NONE
Required scripting permission of the developerPERMISSION_FL_BASIC
Minimum parameters2
Maximum parameters 2