mirror of
https://github.com/bjc/prosody.git
synced 2025-04-06 14:47:37 +03:00
util.array: Add pluck() method to pick a given property from each item
This commit is contained in:
parent
65e0b32a7e
commit
f1f5f74ad3
1 changed files with 7 additions and 0 deletions
|
@ -60,6 +60,13 @@ function array_base.sort(outa, ina, ...)
|
|||
return outa;
|
||||
end
|
||||
|
||||
function array_base.pluck(outa, ina, key)
|
||||
for i=1,#ina do
|
||||
outa[i] = ina[i][key];
|
||||
end
|
||||
return outa;
|
||||
end
|
||||
|
||||
--- These methods only mutate
|
||||
function array_methods:random()
|
||||
return self[math.random(1,#self)];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue