lua_geti
  • References/Lua/Lua/API/Functions and Types

lua_geti[-0, +1, e] int lua_geti (lua_State *L, int index, lua_Integer i); Pushes onto the stack

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

math.modf (x) Returns the integral part of x and the fractional part of x. Its second result is always a float.

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

luaL_prepbuffer[-?, +?, m] char *luaL_prepbuffer (luaL_Buffer *B); Equivalent to

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

lua_isyieldable[-0, +0, –] int lua_isyieldable (lua_State *L); Returns 1 if the given coroutine can yield

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

lua_Number typedef ... lua_Number; The type of floats in Lua. By default this type is double, but that can be changed to

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

lua_sethook[-0, +0, –] void lua_sethook (lua_State *L, lua_Hook f, int mask, int count); Sets the debugging

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

lua_pushthread[-0, +1, –] int lua_pushthread (lua_State *L); Pushes the thread represented by L

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

lua_register[-0, +0, e] void lua_register (lua_State *L, const char *name, lua_CFunction f); Sets

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

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

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

math.exp (x) Returns the value ex (where e is the base of natural logarithms).

2025-01-10 15:47:30