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

luaL_callmeta[-0, +(0|1), e] int luaL_callmeta (lua_State *L, int obj, const char *e); Calls a

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

tonumber (e [, base]) When called with no base, tonumber tries to convert its argument to a number. If the argument is already a number or a string convertible

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

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

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

lua_rotate[-0, +0, –] void lua_rotate (lua_State *L, int idx, int n); Rotates the stack elements between

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

3.3.3 – Assignment Lua allows multiple assignments. Therefore, the syntax for assignment defines a list of variables on the left side and a list of expressions on the right side. The elements

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

lua_Alloc typedef void * (*lua_Alloc) (void *ud, void *ptr, size_t osize,

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

_VERSION A global variable (not a function) that holds a string containing the running Lua version. The current value of this variable is "Lua 5.3".

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

luaL_checknumber[-0, +0, v] lua_Number luaL_checknumber (lua_State *L, int arg); Checks whether

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

os.setlocale (locale [, category]) Sets the current locale of the program. locale is a system-dependent string specifying a locale; category is an optional

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

debug.upvaluejoin (f1, n1, f2, n2) Make the n1-th upvalue of the Lua closure f1 refer to the n2-th upvalue of the Lua closure f2

2025-01-10 15:47:30