Lua Iterators: Comprehensive Guide
Lua iterators allows you to iterate over complex data structures such as tables, arrays, and even user-defined data types in a clean, concise, and efficient manner.
Iterators can be used to simplify code, reduce errors, and make code more readable and maintainable.
Lua iterators can be classified as stateless or stateful based on whether or not they maintain any internal state.
The focus of this article is going to be iterators in Lua.
Lua Iterators Stateless
A stateless iterator is one that does not maintain any internal state and simply returns the next value in the sequence.
Each call to the iterator function is independent of any previous call.
Here is an example of a stateless iterator:
Example: 
Some built-in stateless iterators are:
ipairs()
This function iterates over arrays with integer keys in numerical order.
An array is passed to the function as an argument, and it returns an iterator function that can be used to loop over array elements.
Below example is used to demonstrate the ipairs function where the table is passed as an argument:
Example: 
pairs()
This function is used to iterate over tables.
It returns an iterator function that iterates over the key-value pairs in a table.
Following example deals with the pairs function in Lua which takes the table as an argument:
Example: 
next()
It allows you to iterate over a table.
It takes two arguments: a table and a key, and returns the next key-value pair in the table following the given key.
If the given key is nil, next() returns the first key-value pair in the table.
Let’s explore this function using as example:
Example: 
string.gmatch()
The string.gmatch() function in Lua takes a string and a pattern as input and returns an iterator function that can be used to iterate over all matches of the pattern in the given string.
The iterator function generates each match on the fly, based on the input string and pattern provided to it.
Following example illustrates the string.gmatch function in Lua:
Example: 
Lua Iterators Stateful
Lua stateful iterator is one that maintains some internal state between calls to the iterator function.
The state can be used to keep track of where the iterator is in the sequence or to perform some other function.
Let’s take a look at an example of stateful iterator:
Example: 
Some built-in stateful iterators are:
coroutine.wrap()
It creates an iterator function that can be resumed with the coroutine.resume() function.
No arguments are required for the iterator function, and multiple values are returned by the coroutine.
As soon as the coroutine function returns, the iterator function also returns, indicating that the iteration is complete.
Following examples showcases the implementation of coroutine.wrap() function:
Example: 
io.lines()
This function returns an iterator to iterate over the lines of a file.
It takes a filename or an open file handle as its argument and returns an iterator that can be used to loop over the lines of the file.
Following code snippet portrays the io.lines() function in Lua:
local file = io.open("my_file.txt", "r") for line in io.lines(file) do print(line) end io.close(file)
In above example, we open a local file named my_file.txt for reading and used the io.lines() function to loop over the lines of the file.
Each line is returned as a string and printed to the console.
Finally, we close the file handle using the io.close() function.
To stay up-to-date with all the latest advancements in Lua, subscribe to our newsletter below.