Returns whether the given object is a key in the specified hashtable.
Syntax
containsKey( hashtable , key )
hashtable.containsKey( key )
Parameters
hashtable
|
the hashtable object to search.
|
key
|
the key object to search for.
|
Returns
boolean
|
true if the specified key was found
false if the key was not found
|
Example
if ht.contains( key ) then
println( key.toString( ) + " was found" )
end
|