迭代器 http://www.tutorialspoint.com/lua/lua_iterators.htm 迭代器能够让你遍历某个集合或者容器中的每一个元素. 对于lua来说, 集合通常指代 table, 用于创建变化的数据结构, 类似数组. Iterator is a construct that enables you to traverse through the elements of the so called collection or container. In Lua, th…