Top "Lua-api" questions

Anything related to Lua C Application Programming Interface (Lua C-API).

How to create nested Lua tables using the C API

I want to create a table like myTable = { [0] = { ["a"] = 4, ["b"] = 2 }, [1] = { ["a"] = 13, ["b"] = 37 } } using the C API? My current approach is …

c++ lua lua-table lua-api
Print stacktrace from C code with embedded lua

If I understand this correctly, Lua by default will call the debug library "debug.traceback" when an error occurs. However, …

lua stack-trace traceback lua-api
Primary source for WoW lua API?

I've been looking for first-hand information on the World of Warcraft addon API. There are a couple wikis that are …

lua add-on world-of-warcraft lua-api
Test if Lua number is integer or float

In my C++ program, I need to know if a Lua variable is an integer number or a floating-point number. …

c++ lua lua-api