mirror of
https://github.com/mt-mods/pipeworks.git
synced 2024-11-09 17:03:58 +01:00
Merge branch 'm_table_extends_clean' into 'master'
Make pipeworks.table_extend easier to read See merge request VanessaE/pipeworks!29
This commit is contained in:
commit
d814357ddf
@ -86,10 +86,9 @@ function pipeworks.table_contains(tbl, element)
|
|||||||
end
|
end
|
||||||
|
|
||||||
function pipeworks.table_extend(tbl, tbl2)
|
function pipeworks.table_extend(tbl, tbl2)
|
||||||
local index = #tbl + 1
|
local oldlength = #tbl
|
||||||
for _, elt in ipairs(tbl2) do
|
for i = 1,#tbl2 do
|
||||||
tbl[index] = elt
|
tbl[oldlength + i] = tbl2[i]
|
||||||
index = index + 1
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user