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

debug.getlocal ([thread,] f, local) This function returns the name and the value of the local variable with index local of the function at level f of

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

debug.debug () Enters an interactive mode with the user, running each string that the user enters. Using simple commands and other debug facilities, the user can inspect global

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

os.date ([format [, time]]) Returns a string or a table containing date and time, formatted according to the given string format. If the time

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

lua_Integer typedef ... lua_Integer; The type of integers in Lua. By default this type is long long, (usually

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

lua_pushliteral[-0, +1, m] const char *lua_pushliteral (lua_State *L, const char *s); This macro

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
io.open()
  • References/Lua/Lua/Standard Libraries/Input and Output Facilities

io.open (filename [, mode]) This function opens a file, in the mode specified in the string mode. In case of success, it returns a new file handle. The mode

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
string.len()
  • References/Lua/Lua/Standard Libraries/String Manipulation

string.len (s)"""a\000bc\000"

2025-01-10 15:47:30