mirror of
https://github.com/sbrl/Minetest-WorldEditAdditions.git
synced 2024-10-31 21:33:02 +00:00
13 lines
387 B
Lua
13 lines
387 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 table_contains(tbl, target)
|
|
for key, value in ipairs(tbl) do
|
|
if value == target then return true end
|
|
end
|
|
return false
|
|
end
|
|
|
|
return table_contains
|