Description
Calling target.hash_table.Clone clones the current hash table.
Syntax
trg.hash_table.Clone()
Return value
This function creates a clone of the original hash table
Sample'---------- Start ----------Function StartDim table trg.hash_table.Add "a", 8 set table = trg.hash_table.Clone() trg.Message( table.Find( "a" ) ) End FunctionSee also
'---------- Start ----------
Function Start
Dim table
trg.hash_table.Add "a", 8
set table = trg.hash_table.Clone()
trg.Message( table.Find( "a" ) )
End Function