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

debug.setmetatable (value, table) Sets the metatable for the given value to the given table (which can be nil). Returns value.

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

lua_rawseti[-1, +0, m] void lua_rawseti (lua_State *L, int index, lua_Integer i); Does the equivalent

2025-01-10 15:47:30
io.lines()
  • References/Lua/Lua/Standard Libraries/Input and Output Facilities

io.lines ([filename, ···]) Opens the given file name in read mode and returns an iterator function that works like file:lines(···) over the opened file. When the

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

lua_gettable[-1, +1, e] int lua_gettable (lua_State *L, int index); Pushes onto the stack the

2025-01-10 15:47:30
math.abs()
  • References/Lua/Lua/Standard Libraries/Mathematical Functions

math.abs (x) Returns the absolute value of x. (integer/float)

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

luaL_addstring[-?, +?, m] void luaL_addstring (luaL_Buffer *B, const char *s); Adds the zero-terminated

2025-01-10 15:47:30
coroutine.isyieldable()
  • References/Lua/Lua/Standard Libraries/Coroutine Manipulation

coroutine.isyieldable () Returns true when the running coroutine can yield. A running coroutine is yieldable if it is not the main thread and it is not inside a non-yieldable

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

os.clock () Returns an approximation of the amount in seconds of CPU time used by the program.

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

luaL_buffinit[-0, +0, –] void luaL_buffinit (lua_State *L, luaL_Buffer *B); Initializes a buffer B

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

luaL_addchar[-?, +?, m] void luaL_addchar (luaL_Buffer *B, char c); Adds the byte c

2025-01-10 15:47:30