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