There is a certain table which gets over as follows:
for i = #someTable, 1, -1 do -- итераторы не используются для большей производительности local t = someTable[i] func1(ta, tb) func2(tc) if t.foobar then t.foobar() end func3(t) end I would like to speed up this process using Corutin (to sort through several threads). How to organize this process on Lua without third-party libraries? And are there any other ways to speed up the search?