SiMX Help‎ > ‎The Target Platform‎ > ‎Objects‎ > ‎TARGET Object‎ > ‎target.hash_table‎ > ‎

Clone


Platform Objects


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 Start
Dim table

trg.hash_table.Add "a", 8
set table = trg.hash_table.Clone()
trg.Message( table.Find( "a" ) )
End Function

See also