Jump to content

Module:Table/length

From The Mighty Kingdoms Wiki
Revision as of 08:44, 29 June 2025 by Cyrus (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Documentation for this module may be created at Module:Table/length/doc

local ipairs_default_iter = ipairs{}

return function(t, raw)
	local n = 0
	if raw then
		for i in ipairs_default_iter, t, 0 do
			n = i
		end
		return n
	end
	repeat
		n = n + 1
	until t[n] == nil
	return n - 1
end