mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 05:37:39 +03:00
util.set: Add a serialization preparation metamethod
Enables util.serialization to turn Sets into a representation that can be deserialized with an environment trick, i.e. `set{"a","b"}`. Also useful for debug purposes.
This commit is contained in:
parent
1a2fdf3f7f
commit
196117c3f2
1 changed files with 9 additions and 0 deletions
|
@ -189,6 +189,15 @@ function set_mt.__tostring(set)
|
|||
return t_concat(s, ", ");
|
||||
end
|
||||
|
||||
function set_mt.__freeze(set)
|
||||
local s = {};
|
||||
for item in pairs(set._items) do
|
||||
s[#s + 1] = item;
|
||||
end
|
||||
return s;
|
||||
end
|
||||
|
||||
|
||||
return {
|
||||
new = new;
|
||||
is_set = is_set;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue