I need to merge two tables, with the contents of the second overwriting contents in the first if a given item is in both. I looked but the standard libraries don\'t seem to
For numeric-index table merging:
for k,v in pairs(secondTable) do table.insert(firstTable, v) end