Search icon
Subscription
0
Cart icon
Close icon
You have no products in your basket yet
Arrow left icon
All Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Newsletters
Free Learning
Arrow right icon
Lua Quick Start Guide

You're reading from  Lua Quick Start Guide

Product type Book
Published in Jul 2018
Publisher Packt
ISBN-13 9781789343229
Pages 202 pages
Edition 1st Edition
Languages
Author (1):
Gabor Szauer Gabor Szauer
Profile icon Gabor Szauer

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, do some work on it, and print the result of that work with only one line of code, as follows:

Foo::GetInstance()->DoWork()->PrintResults...
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 £13.99/month. Cancel anytime}