-
-
Notifications
You must be signed in to change notification settings - Fork 620
table.insertflat
starkos edited this page Apr 10, 2021
·
3 revisions
This wiki is no longer being maintained.
Inserts a value of array of values into a table. If the value is itself a table, its contents are enumerated and added instead.
table.insertflat(arr, values)
arr
is a table containing indexed elements. values
is a value or array of values to insert.
Returns arr
with the new values added in place.
Premake 5.0 or later.
-- returns { "x", "y" }
table.insertflat({ "x" }, "y")
-- returns { "x", "y", "z" }
table.insertflat({ "x" }, { "y", { "z" } })