Concatenation
  • References/Lua/Lua/Language/Expressions

3.4.6 – Concatenation The string concatenation operator in Lua is denoted by two dots ('..'). If both operands are strings or numbers, then they are converted to strings according

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
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_getupvalue
  • References/Lua/Lua/API/The Debug Interface

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

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

lua_newthread[-0, +1, m] lua_State *lua_newthread (lua_State *L); Creates a new thread, pushes

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

lua_sethook[-0, +0, –] void lua_sethook (lua_State *L, lua_Hook f, int mask, int count); Sets the debugging

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
lua_pushcclosure
  • References/Lua/Lua/API/Functions and Types

lua_pushcclosure[-n, +1, m] void lua_pushcclosure (lua_State *L, lua_CFunction fn, int n); Pushes

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
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