We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In case of LuaJit to iterate through indexed tables is better for performance to use
for K,Blk in ipairs(bgos) do
instead of
for K,Blk in pairs(bgos) do
or:
for i=1, #bgos do
that on LuaJit has same performance, but fastest on pure Lua.
The text was updated successfully, but these errors were encountered:
Wohlstand
No branches or pull requests
In case of LuaJit to iterate through indexed tables is better for performance to use
instead of
or:
that on LuaJit has same performance, but fastest on pure Lua.
The text was updated successfully, but these errors were encountered: