mirror of
https://github.com/kepler155c/opus
synced 2024-11-15 13:14:49 +00:00
38 lines
620 B
Lua
38 lines
620 B
Lua
-- convience functions for tables with key/value pairs
|
|
local Util = require('util')
|
|
|
|
local Map = { }
|
|
|
|
function Map.removeMatches(t, values)
|
|
local function matchAll(entry)
|
|
for k, v in pairs(values) do
|
|
if entry[k] ~= v then
|
|
return
|
|
end
|
|
end
|
|
return true
|
|
end
|
|
|
|
for k,v in pairs(t) do
|
|
if matchAll(v) then
|
|
t[k] = nil
|
|
end
|
|
end
|
|
end
|
|
|
|
-- remove table entries if passed function returns false
|
|
function Map.prune(t, fn)
|
|
for _,k in pairs(Util.keys(t)) do
|
|
local v = t[k]
|
|
if type(v) == 'table' then
|
|
t[k] = Util.prune(v, fn)
|
|
end
|
|
if not fn(t[k]) then
|
|
t[k] = nil
|
|
end
|
|
end
|
|
return t
|
|
end
|
|
|
|
return Map
|