lua_pushlightuserdata
  • References/Lua/Lua/API/Functions and Types

lua_pushlightuserdata[-0, +1, –] void lua_pushlightuserdata (lua_State *L, void *p); Pushes a light userdata

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

lua_settop[-?, +?, –] void lua_settop (lua_State *L, int index); Accepts any index, or 0, and sets the

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

lua_upvalueid[-0, +0, –] void *lua_upvalueid (lua_State *L, int funcindex, int n); Returns a unique identifier

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

lua_dump[-0, +0, –] int lua_dump (lua_State *L, lua_Writer writer,

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

io.tmpfile () In case of success, returns a handle for a temporary file. This file is opened in update mode and it is automatically removed when the program ends.

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

lua_KContext typedef ... lua_KContext; The type for continuation-function contexts. It must be a numeric type. This type is defined

2025-01-10 15:47:30
Control Structures
  • References/Lua/Lua/Language/Statements

3.3.4 – Control Structures The control structures if, while, and repeat have the usual meaning and familiar syntax: stat ::=

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

luaL_Stream typedef struct luaL_Stream { FILE *f; lua_CFunction closef; } luaL_Stream; The standard representation for file handles

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

lua_pcallk[-(nargs + 1), +(nresults|1), –] int lua_pcallk (lua_State *L, int nargs,

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

debug.setlocal ([thread,] level, local, value) This function assigns the value value to the local variable with index local of the function at level

2025-01-10 15:47:30