mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 13:17:38 +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);
|
||||
end
|
||||
|
||||
array.new = new_array;
|
||||
|
||||
function array_mt.__add(a1, a2)
|
||||
local res = new_array();
|
||||
return res:append(a1):append(a2);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue