mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
util.array: Add __div for parity with util.set
This commit is contained in:
parent
fbb11b868f
commit
e12a6cdb99
1 changed files with 19 additions and 0 deletions
|
@ -52,6 +52,19 @@ function array_mt.__eq(a, b)
|
|||
return true;
|
||||
end
|
||||
|
||||
function array_mt.__div(a1, func)
|
||||
local a2 = new_array();
|
||||
local o = 0;
|
||||
for i = 1, #a1 do
|
||||
local new_value = func(a1[i]);
|
||||
if new_value ~= nil then
|
||||
o = o + 1;
|
||||
a2[o] = new_value;
|
||||
end
|
||||
end
|
||||
return a2;
|
||||
end
|
||||
|
||||
setmetatable(array, { __call = new_array });
|
||||
|
||||
-- Read-only methods
|
||||
|
@ -59,6 +72,12 @@ function array_methods:random()
|
|||
return self[math_random(1, #self)];
|
||||
end
|
||||
|
||||
-- Return a random value excluding the one at idx
|
||||
function array_methods:random_other(idx)
|
||||
local max = #self;
|
||||
return self[((math.random(1, max-1)+(idx-1))%max)+1];
|
||||
end
|
||||
|
||||
-- These methods can be called two ways:
|
||||
-- array.method(existing_array, [params [, ...]]) -- Create new array for result
|
||||
-- existing_array:method([params, ...]) -- Transform existing array into result
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue