lua_Debug
  • References/Lua/Lua/API/The Debug Interface

lua_Debug typedef struct lua_Debug { int event; const char *name; /* (n) */ const char *namewhat; /* (n) */ const char

2025-01-10 15:47:30
debug.getmetatable()
  • References/Lua/Lua/Standard Libraries/The Debug Library

debug.getmetatable (value) Returns the metatable of the given value or nil if it does not have a metatable.

2025-01-10 15:47:30
lua_status
  • References/Lua/Lua/API/Functions and Types

lua_status[-0, +0, –] int lua_status (lua_State *L); Returns the status of the thread L.

2025-01-10 15:47:30
lua_newtable
  • References/Lua/Lua/API/Functions and Types

lua_newtable[-0, +1, m] void lua_newtable (lua_State *L); Creates a new empty table and pushes

2025-01-10 15:47:30
luaL_loadfilex
  • References/Lua/Lua/Auxiliary Library/Functions and Types

luaL_loadfilex[-0, +1, m] int luaL_loadfilex (lua_State *L, const char *filename,

2025-01-10 15:47:30
lua_Unsigned
  • References/Lua/Lua/API/Functions and Types

lua_Unsigned typedef ... lua_Unsigned; The unsigned version of

2025-01-10 15:47:30
lua_getlocal
  • References/Lua/Lua/API/The Debug Interface

lua_getlocal[-0, +(0|1), –] const char *lua_getlocal (lua_State *L, const lua_Debug *ar, int n); Gets information

2025-01-10 15:47:30
lua_tothread
  • References/Lua/Lua/API/Functions and Types

lua_tothread[-0, +0, –] lua_State *lua_tothread (lua_State *L, int index); Converts the value at the given

2025-01-10 15:47:30
lua_getfield
  • References/Lua/Lua/API/Functions and Types

lua_getfield[-0, +1, e] int lua_getfield (lua_State *L, int index, const char *k); Pushes onto

2025-01-10 15:47:30
io.type()
  • References/Lua/Lua/Standard Libraries/Input and Output Facilities

io.type (obj) Checks whether obj is a valid file handle. Returns the string "file" if obj is an open file handle, "closed file"

2025-01-10 15:47:30