NOT A SCRIPT REQUEST!!!!!!
I usually use for i, item in pairs(InsertTableHere) do
when iterating through a table, but recently, I discovered that I can use next() instead of pairs() when iterating a table. I want to know what the different between pairs() and next() is. Thanks!
There the same really,
01 | local Table = { } |
02 |
03 | table.foreach(Table, function (v) -- table.foreach is just like "in pairs()", but less function run time. |
04 | print (v) |
05 | end ) |
06 | = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = |
07 | for _,v in next , (Table) do -- Once it prints the first data then it will move to the next |
08 | print (v) |
09 | end |
10 | = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = |
11 | for _,v in pairs (Table) do -- A pair is 2, so it just prints 2 at the same time, after that it moves to the next data |
12 | print (v) |
13 | end |