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

lua_settop[-?, +?, –] void lua_settop (lua_State *L, int index); Accepts any index, or 0, and sets the

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

xpcall (f, msgh [, arg1, ···]) This function is similar to pcall, except

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

luaL_openlibs[-0, +0, e] void luaL_openlibs (lua_State *L); Opens all standard Lua libraries into

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

setmetatable (table, metatable) Sets the metatable for the given table. (To change the metatable of other types from Lua code, you must use the debug library (

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

debug.getupvalue (f, up) This function returns the name and the value of the upvalue with index up of the function f. The function returns nil

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

lua_newthread[-0, +1, m] lua_State *lua_newthread (lua_State *L); Creates a new thread, pushes

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

lua_pushlightuserdata[-0, +1, –] void lua_pushlightuserdata (lua_State *L, void *p); Pushes a light userdata

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

luaL_loadstring[-0, +1, –] int luaL_loadstring (lua_State *L, const char *s); Loads a string as a Lua chunk

2025-01-10 15:47:30