mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.array: Add freeze metamethod
This commit is contained in:
parent
1789a7adf8
commit
15ba5f41b1
1 changed files with 2 additions and 0 deletions
|
@ -21,6 +21,8 @@ local array_base = {};
|
|||
local array_methods = {};
|
||||
local array_mt = { __index = array_methods, __name = "array", __tostring = function (self) return "{"..self:concat(", ").."}"; end };
|
||||
|
||||
function array_mt:__freeze() return self; end
|
||||
|
||||
local function new_array(self, t, _s, _var)
|
||||
if type(t) == "function" then -- Assume iterator
|
||||
t = self.collect(t, _s, _var);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue