Skip to content

Commit d36ad41

Browse files
committed
feat: util.foreach with sorted keys
1 parent b8d8648 commit d36ad41

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

lua/lazy/util.lua

+12
Original file line numberDiff line numberDiff line change
@@ -134,4 +134,16 @@ function M.dump(value)
134134
return table.concat(result, "")
135135
end
136136

137+
---@generic V
138+
---@param t table<string, V>
139+
---@param fn fun(key:string, value:V)
140+
function M.foreach(t, fn)
141+
---@type string[]
142+
local keys = vim.tbl_keys(t)
143+
table.sort(keys)
144+
for _, key in ipairs(keys) do
145+
fn(key, t[key])
146+
end
147+
end
148+
137149
return M

0 commit comments

Comments
 (0)