table.CopyFromTo
Example
Demonstrates the use of this function.
local Test1 = {A = "String keys", B = "Table 1"}
local Test2 = {"Numeric keys", "Table 2"}
table.CopyFromTo( Test2, Test1 )
PrintTable( Test1 )
Output:
1 = Numeric keys
2 = Table 2