Add more small table utils

master
Lars Mueller 2021-11-13 16:29:00 +01:00
parent 6b8fb8da91
commit e6a71ac13f
1 changed files with 15 additions and 0 deletions

View File

@ -5,6 +5,9 @@ local assert, ipairs, math, next, pairs, rawget, rawset, setmetatable, string, t
local _ENV = {}
setfenv(1, _ENV)
-- Empty table
empty = {}
-- Table helpers
function map_index(table, func)
@ -391,6 +394,8 @@ function map(table, func)
return table
end
map_values = map
function map_keys(table, func)
local new_tab = {}
for key, value in pairs(table) do
@ -616,6 +621,16 @@ end
binary_search = binary_search_comparator(default_comparator)
--> whether the list is sorted in ascending order
function is_sorted(list, comparator)
for index = 2, #list do
if comparator(list[index - 1], list[index]) >= 0 then
return false
end
end
return true
end
function reverse(table)
local len = #table
for index = 1, math.floor(len / 2) do