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

lua_replace[-1, +0, –] void lua_replace (lua_State *L, int index); Moves the top element into the given

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

lua_pop[-n, +0, –] void lua_pop (lua_State *L, int n); Pops n elements from the stack.

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

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

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

table.concat (list [, sep [, i [, j]]]) Given a list where all elements are strings or numbers, returns the string list[i]..sep..list[i+1] ··· sep..list[j]. The default

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
luaL_error
  • References/Lua/Lua/Auxiliary Library/Functions and Types

luaL_error[-0, +0, v] int luaL_error (lua_State *L, const char *fmt, ...); Raises an error. The

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

lua_arith[-(2|1), +1, e] void lua_arith (lua_State *L, int op); Performs an arithmetic or bitwise

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

luaL_buffinitsize[-?, +?, m] char *luaL_buffinitsize (lua_State *L, luaL_Buffer *B, size_t sz);

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

assert (v [, message]) Calls error if the value of its argument v

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

lua_version[-0, +0, –] const lua_Number *lua_version (lua_State *L); Returns the address of the version

2025-01-10 15:47:30