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