#ipairs vs pairs vs none
1 messages · Page 1 of 1 (latest)
this was posted awhile back
the generalized version (the last one) is fastest
ipairs is second best for this purpose
and pairs is slowest, but allows you to get keys from dictionaries
no
in a basic loop yes
but actually the time it takes to index the table and do anything with it will slow it down slower than ipairs
its weird but functionally it is faster as a loop until you do anything inside the loop with it