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

lua_KFunction typedef int (*lua_KFunction) (lua_State *L, int status, lua_KContext ctx); Type for continuation functions (see

2025-01-10 15:47:30
lua_upvaluejoin
  • References/Lua/Lua/API/The Debug Interface

lua_upvaluejoin[-0, +0, –] void lua_upvaluejoin (lua_State *L, int funcindex1, int n1,

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

lua_pushnil[-0, +1, –] void lua_pushnil (lua_State *L); Pushes a nil value onto the stack.

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

lua_setuservalue[-1, +0, –] void lua_setuservalue (lua_State *L, int index); Pops a value from the stack

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

luaL_Reg typedef struct luaL_Reg { const char *name; lua_CFunction func; } luaL_Reg; Type for arrays of functions to be registered

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

debug.sethook ([thread,] hook, mask [, count]) Sets the given function as a hook. The string mask and the number count describe when the hook will be

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

math.rad (x) Converts the angle x from degrees to radians.

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