Добавлены все обновления от сообщества, вплоть до #148

This commit is contained in:
2024-09-12 14:28:43 +03:00
parent 98159766c4
commit 487a0e6e16
8841 changed files with 23077 additions and 20175 deletions

View File

@@ -0,0 +1,25 @@
local set_mt = {}
set_mt.__index = set_mt
function set_mt.new(t)
local new = {}
for k, v in pairs(t or {}) do
new[v] = true
end
return setmetatable(new, set_mt)
end
local list_mt = {}
list_mt.__index = list_mt
function list_mt.new(t)
local new = {}
for k, v in pairs(t or {}) do
end
return setmetatable(new, list_mt)
end
return set_mt, list_mt