lua_Hook
  • References/Lua/Lua/API/The Debug Interface

lua_Hook typedef void (*lua_Hook) (lua_State *L, lua_Debug *ar); Type for debugging hook functions. Whenever a hook is called

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

loadfile ([filename [, mode [, env]]]) Similar to load, but gets the chunk

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

math.type (x) Returns "integer" if x is an integer, "float" if it is a float, or nil if x is not a number.

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

lua_pushvalue[-0, +1, –] void lua_pushvalue (lua_State *L, int index); Pushes a copy of the element at

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

luaL_prepbuffsize[-?, +?, m] char *luaL_prepbuffsize (luaL_Buffer *B, size_t sz); Returns an address

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

luaL_loadbuffer[-0, +1, –] int luaL_loadbuffer (lua_State *L, const char *buff,

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

lua_getstack[-0, +0, –] int lua_getstack (lua_State *L, int level, lua_Debug *ar); Gets information about

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

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

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

lua_yield[-?, +?, e] int lua_yield (lua_State *L, int nresults); This function is equivalent to

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