diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/template/table.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/meta/template/table.lua b/meta/template/table.lua index a7fe68d2..b0a386c3 100644 --- a/meta/template/table.lua +++ b/meta/template/table.lua @@ -92,4 +92,16 @@ function table.foreachi(list, callback) end ---@deprecated function table.getn(list) end +---@version JIT +---#DES 'table.new' +---@param narray integer +---@param nhash integer +---@return table +function table.new(narray, nhash) end + +---@version JIT +---#DES 'table.clear' +---@param tab table +function table.clear(tab) end + return table |