rcfai

Results 7 comments of rcfai

> ipairs is faster than pairs any source on this?

I ran a quick test and ipairs are indeed expectedly a bit slower than pairs - and I don't see why would it be the other way around (in any...

I guess the larger the table, the better ipairs() becomes then? Here are my results: ```lua local function Benchmark(s, fn) local start = SysTime() for i = 1, 1000000 do...

Nope, I ran the tests without any external modifications

i just did, both functions are fine

I would assume none of that really matters because any overhead created is equal for both functions? Anyways: ```lua local t = SysTime local pairs = pairs local ipairs =...

Alright then, everything is clear. Thanks for the info.