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

Filtering the information

The debug.info function is pretty slow, and this happens mostly because of all the data it has to collect. To speed up the function enough, there is an optional second argument that will filter out what variables are present in the return table. The second argument is a string, and it can have any of the following variables:

  • "n": Filters name and what the name represents (namewhat)
  • "f": Filters func
  • "S": Filters source, short_src, what, linedefined, and lastlinedefined
  • "l": Filters currentline
  • "L": Filters activelines
  • "u": Filters nup
You can combine multiple filters in the filter string. For example, to get name and what you would do: debug.info(1, "nS")
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