mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.array: Expose new() on module table
For consistency with other utils. Consistency is good.
This commit is contained in:
parent
e4d5c15396
commit
cbed7dfdf5
1 changed files with 2 additions and 0 deletions
|
@ -35,6 +35,8 @@ local function new_array(self, t, _s, _var)
|
||||||
return setmetatable(t or {}, array_mt);
|
return setmetatable(t or {}, array_mt);
|
||||||
end
|
end
|
||||||
|
|
||||||
|
array.new = new_array;
|
||||||
|
|
||||||
function array_mt.__add(a1, a2)
|
function array_mt.__add(a1, a2)
|
||||||
local res = new_array();
|
local res = new_array();
|
||||||
return res:append(a1):append(a2);
|
return res:append(a1):append(a2);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue