Skip to Content
Lua Quick Start Guide
book

Lua Quick Start Guide

by Gabor Szauer
July 2018
Beginner
202 pages
5h 42m
English
Packt Publishing
Content preview from Lua Quick Start Guide

Iterator functions

Closures can be used to create a custom iterator. In this section, you will build a custom iterator that will walk through an array, returning only the value stored in each index, not the index itself. The first time the iterator encounters a nil variable, it will terminate. This custom iterator will work with the generic for loop. A generic for loop holds on to three variables:

  • The iterator function, this is your closure
  • An invariant state
  • A control variable, the first variable returned by the iterator function

When a generic for executes, it evaluates the expressions after the in keyword. These expressions should result in the three values kept by the for: the iterator function, the invariant state, and the initial ...

Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

Beginning Lua Programming

Beginning Lua Programming

Kurt Jung, Aaron Brown
Vim Masterclass

Vim Masterclass

Jason Cannon

Publisher Resources

ISBN: 9781789343229Supplemental Content