Represents a Lua-style iteratable which iterates single values in a for...in loop (ex. for x in iter() do). For more information see: https://typescripttolua.github.io/docs/advanced/language-extensions
for...in
for x in iter() do
The type of value returned each iteration. If this is LuaMultiReturn, multiple values will be returned each iteration.
The type of the state value passed back to the iterator function each iteration.
Generated using TypeDoc
Represents a Lua-style iteratable which iterates single values in a
for...in
loop (ex.for x in iter() do
). For more information see: https://typescripttolua.github.io/docs/advanced/language-extensions