Search icon CANCEL
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Lua Quick Start Guide

You're reading from   Lua Quick Start Guide The easiest way to learn Lua programming

Arrow left icon
Product type Paperback
Published in Jul 2018
Publisher Packt
ISBN-13 9781789343229
Length 202 pages
Edition 1st Edition
Languages
Arrow right icon
Author (1):
Arrow left icon
Gabor Szauer Gabor Szauer
Author Profile Icon Gabor Szauer
Gabor Szauer
Arrow right icon
View More author details
Toc

Iterating

In Lua, you can iterate over all elements of a table or an array using the generic for loop. The generic for is similar to the numeric for loop discussed in the last chapter, but with subtle differences in syntax.

The generic for loop consists of the for keyword followed by a variable list, followed by the in keyword, followed by an expression list, and finally a do-end chunk. The code looks like the following:

The first variable in the variable list is the control variable. On each iteration, the for loop evaluates the expressions in the list and assigns their results to the variable list. The loop keeps executing while the control variable is not nil.

The expression list of a for loop usually consists of a single iterator function. Lua provides several built-in iterators for different tasks. This section will explore how the pairs iterator, which has a key and a value...

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime