debug.setuservalue()
  • References/Lua/Lua/Standard Libraries/The Debug Library

debug.setuservalue (udata, value) Sets the given value as the Lua value associated to the given udata. udata must be a full userdata.

2025-01-10 15:47:30
Logical Operators
  • References/Lua/Lua/Language/Expressions

3.4.5 – Logical Operators The logical operators in Lua are and, or, and not. Like the control structures (see

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

luaL_traceback[-0, +1, m] void luaL_traceback (lua_State *L, lua_State *L1, const char *msg,

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

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

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

lua_getglobal[-0, +1, e] int lua_getglobal (lua_State *L, const char *name); Pushes onto the stack

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

luaL_tolstring[-0, +1, e] const char *luaL_tolstring (lua_State *L, int idx, size_t *len); Converts

2025-01-10 15:47:30
Bitwise Operators
  • References/Lua/Lua/Language/Expressions

3.4.2 – Bitwise Operators Lua supports the following bitwise operators: &: bitwise AND |: bitwise OR ~:

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

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

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

collectgarbage ([opt [, arg]]) This function is a generic interface to the garbage collector. It performs different functions according to its first argument, opt:

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

luaL_gsub[-0, +1, m] const char *luaL_gsub (lua_State *L, const char *s,

2025-01-10 15:47:30