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:
Kim Alvefur 2023-03-26 13:07:20 +02:00
parent 1a2fdf3f7f
commit 196117c3f2

View file

@ -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;