mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-11-01 05:43:01 +00:00
Starbeamrainbowlabs
1f44e240fb
..it was getting rather long, because Lua doesn't exactly come with batteries included :-/
13 lines
568 B
Lua
13 lines
568 B
Lua
--- Executes the given function on every item in the given table.
|
|
-- Ignores return values that are nil and doesn't insert them into the table.
|
|
-- @param tbl table The table to operate on.
|
|
-- @param func function<any>:any|nil The function to execute on every item in the table.
|
|
-- @returns table A new table containing the return values of the function.
|
|
function worldeditadditions.table_map(tbl, func)
|
|
local result = {}
|
|
for i,value in ipairs(tbl) do
|
|
local newval = func(value, i)
|
|
if newval ~= nil then table.insert(result, newval) end
|
|
end
|
|
return result
|
|
end
|