luaL_checkstring
  • References/Lua/Lua/Auxiliary Library/Functions and Types

luaL_checkstring[-0, +0, v] const char *luaL_checkstring (lua_State *L, int arg); Checks whether

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

lua_xmove[-?, +?, –] void lua_xmove (lua_State *from, lua_State *to, int n); Exchange values between different

2025-01-10 15:47:30
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
lua_setupvalue
  • References/Lua/Lua/API/The Debug Interface

lua_setupvalue[-(0|1), +0, –] const char *lua_setupvalue (lua_State *L, int funcindex, int n); Sets the

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

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

2025-01-10 15:47:30
os.remove()
  • References/Lua/Lua/Standard Libraries/Operating System Facilities

os.remove (filename) Deletes the file (or empty directory, on POSIX systems) with the given name. If this function fails, it returns nil, plus a string describing the error

2025-01-10 15:47:30
tostring()
  • References/Lua/Lua/Standard Libraries/Basic Functions

tostring (v)string.format If the metatable of v

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

luaL_requiref[-0, +1, e] void luaL_requiref (lua_State *L, const char *modname, lua_CFunction

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