-
-
Notifications
You must be signed in to change notification settings - Fork 640
table.insertflat
Jason Perkins edited this page May 30, 2015
·
3 revisions
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" } })