Добавлены все обновления от сообщества, вплоть до #148
This commit is contained in:
45
mining-patch-planner/mpp/global_extends.lua
Normal file
45
mining-patch-planner/mpp/global_extends.lua
Normal file
@@ -0,0 +1,45 @@
|
||||
local table_insert = table.insert
|
||||
|
||||
List = require("mpp.list")
|
||||
|
||||
math.phi = 1.618033988749894
|
||||
|
||||
---Filters out a list
|
||||
---@param t any
|
||||
---@param func any
|
||||
function table.filter(t, func)
|
||||
local new = {}
|
||||
for k, v in ipairs(t) do
|
||||
if func(v) then new[#new+1] = v end
|
||||
end
|
||||
return new
|
||||
end
|
||||
|
||||
function table.map(t, func)
|
||||
local new = {}
|
||||
for k, v in pairs(t) do
|
||||
new[k] = func(v)
|
||||
end
|
||||
return new
|
||||
end
|
||||
|
||||
function table.mapkey(t, func)
|
||||
local new = {}
|
||||
for k, v in pairs(t) do
|
||||
new[func(v)] = v
|
||||
end
|
||||
return new
|
||||
end
|
||||
|
||||
---Appends a list to the target table
|
||||
---@param target table
|
||||
---@param other any[]
|
||||
function table.append(target, other)
|
||||
for _, value in pairs(other) do
|
||||
table_insert(target, value)
|
||||
end
|
||||
end
|
||||
|
||||
function math.divmod(a, b)
|
||||
return math.floor(a / b), a % b
|
||||
end
|
||||
Reference in New Issue
Block a user