Minetest-WorldEditAdditions/worldeditadditions/utils/tables/table_contains.lua
Starbeamrainbowlabs db7b20d485
Refactor table functions into subtable of wea
Also, you can return a value from dofile()!!!!

This changes everything.
2021-06-28 00:56:29 +01:00

14 lines
381 B
Lua

--- Looks to see whether a given table contains a given value.
-- @param tbl table The table to look in.
-- @param target any The target to look for.
-- @returns bool Whether the table contains the given target or not.
local function contains(tbl, target)
for key, value in ipairs(tbl) do
if value == target then return true end
end
return false
end
return table_contains