Hello,
I would like implement a function that will return an iterator that returns a new entry each time it is called in rlua.
Something like this : for fname in dir(".") do print(fname) end
I found the solution in C implementation of lua,But unfortunately their API aren't available in rlua.
Could please give me some hint to implementing this in rlua ?