Returns whether the specified hashtable object contains no objects.
Syntax
isEmpty( hashtable )
hashtable.isEmpty( )
Parameters
hashtable
|
the hashtable object to check.
|
Returns
boolean
|
true if the specified hashtable is empty
false if the hashtable is not empty
|
Example
if ht.isEmpty( ) then
println( "is empty" )
end
|