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

lua_getinfo[-(0|1), +(0|1|2), e] int lua_getinfo (lua_State *L, const char *what, lua_Debug *ar);

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

lua_rawgeti[-0, +1, –] int lua_rawgeti (lua_State *L, int index, lua_Integer n); Pushes onto the stack

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

lua_isnoneornil[-0, +0, –] int lua_isnoneornil (lua_State *L, int index); Returns 1 if the given index

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

luaL_newmetatable[-0, +1, m] int luaL_newmetatable (lua_State *L, const char *tname); If the registry

2025-01-10 15:47:30
string.pack()
  • References/Lua/Lua/Standard Libraries/String Manipulation

string.pack (fmt, v1, v2, ···) Returns a binary string containing the values v1, v2, etc. packed (that is, serialized in binary form) according to the

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

lua_Reader typedef const char * (*lua_Reader) (lua_State *L, void *data,

2025-01-10 15:47:30
table.sort()
  • References/Lua/Lua/Standard Libraries/Table Manipulation

table.sort (list [, comp]) Sorts list elements in a given order, in-place, from list[1] to list[#list]. If comp is given, then

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

lua_newuserdata[-0, +1, m] void *lua_newuserdata (lua_State *L, size_t size); This function allocates

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

lua_upvalueindex[-0, +0, –] int lua_upvalueindex (int i); Returns the pseudo-index that represents the

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

debug.getinfo ([thread,] f [, what]) Returns a table with information about a function. You can give the function directly or you can give a number as the value of f

2025-01-10 15:47:30