Revision as of 23:05, 28 March 2026 by Sware(talk | contribs)(Created page with "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")