mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.set: Fix to make constructor work, and functions defined correctly
This commit is contained in:
parent
7f87706ee4
commit
0cb055053f
1 changed files with 14 additions and 8 deletions
22
util/set.lua
22
util/set.lua
|
@ -1,3 +1,5 @@
|
|||
local ipairs, pairs =
|
||||
ipairs, pairs;
|
||||
|
||||
module "set"
|
||||
|
||||
|
@ -5,40 +7,44 @@ function new(list)
|
|||
local items = {};
|
||||
local set = { items = items };
|
||||
|
||||
function set:add(set, item)
|
||||
function set:add(item)
|
||||
items[item] = true;
|
||||
end
|
||||
|
||||
function set:contains(set, item)
|
||||
return items[item]
|
||||
function set:contains(item)
|
||||
return items[item];
|
||||
end
|
||||
|
||||
function set:items(set)
|
||||
function set:items()
|
||||
return items;
|
||||
end
|
||||
|
||||
function set:remove(set, item)
|
||||
function set:remove(item)
|
||||
items[item] = nil;
|
||||
end
|
||||
|
||||
function set:add_list(set, list)
|
||||
function set:add_list(list)
|
||||
for _, item in ipairs(list) do
|
||||
items[item] = true;
|
||||
end
|
||||
end
|
||||
|
||||
function set:include(set, otherset)
|
||||
function set:include(otherset)
|
||||
for item in pairs(otherset) do
|
||||
items[item] = true;
|
||||
end
|
||||
end
|
||||
|
||||
function set:exclude(set, otherset)
|
||||
function set:exclude(otherset)
|
||||
for item in pairs(otherset) do
|
||||
items[item] = nil;
|
||||
end
|
||||
end
|
||||
|
||||
if list then
|
||||
set:add_list(list);
|
||||
end
|
||||
|
||||
return set;
|
||||
end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue