lua_rawiter, writing to table during traversal #1297
Answered
by
vegorov-rbx
petrihakkinen
asked this question in
Q&A
-
lua_next supports modifying the table during traversal as long as writes happen to existing fields. Is the same true for lua_rawiter? p.s. it would be great to get documentation for the C API :) |
Beta Was this translation helpful? Give feedback.
Answered by
vegorov-rbx
Jun 17, 2024
Replies: 1 comment 1 reply
-
The same rules are true for |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
petrihakkinen
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The same rules are true for
lua_rawiter
.