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

API conventions

Most functions that are used to register classes or data in the Lua Bridge API return some kind of class. This is done with the intention of allowing functions to be chained. Chaining functions means using the result of one function and calling another function on it.

For example, a member function of an object might return the object, so a different function can be called without storing the actual object as a variable. Consider the following class:

class Foo {public:  // Assume foo is a singleton  static Foo* GetInstance();   Foo* DoWork();  Foo* PrintResults();};

In the preceding code, the GetInstance, DoWork, and PrintResults functions all return a pointer to the object that they were called on. This lets us get the object, ...

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