mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.array: Add O(n) equality check metamethod
This commit is contained in:
parent
911bea7746
commit
0bf98e614f
1 changed files with 13 additions and 0 deletions
|
@ -33,6 +33,19 @@ function array_mt.__add(a1, a2)
|
|||
return res:append(a1):append(a2);
|
||||
end
|
||||
|
||||
function array_mt.__eq(a, b)
|
||||
if #a == #b then
|
||||
for i = 1, #a do
|
||||
if a[i] ~= b[i] then
|
||||
return false;
|
||||
end
|
||||
end
|
||||
else
|
||||
return false;
|
||||
end
|
||||
return true;
|
||||
end
|
||||
|
||||
setmetatable(array, { __call = new_array });
|
||||
|
||||
-- Read-only methods
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue