1
0
forked from redo/BlockLua

Compare commits

...

1 Commits

Author SHA1 Message Date
Redo
8399b11322 fix table.empty, from auios 2025-12-08 11:49:23 -05:00
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@@ -5,7 +5,7 @@
-- Table / List
-- Whether a table contains no keys
function table.empty(t)
return next(t)~=nil
return next(t)==nil
end
-- Apply a function to each key in a table
function table.map(f, ...)