io.input()
  • References/Lua/Lua/Standard Libraries/Input and Output Facilities

io.input ([file]) When called with a file name, it opens the named file (in text mode), and sets its handle as the default input file. When called with a file handle, it simply

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

luaL_dofile[-0, +?, e] int luaL_dofile (lua_State *L, const char *filename); Loads and runs the

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

luaL_checkany[-0, +0, v] void luaL_checkany (lua_State *L, int arg); Checks whether the function

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

luaL_execresult[-0, +3, m] int luaL_execresult (lua_State *L, int stat); This function produces

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

debug.gethook ([thread]) Returns the current hook settings of the thread, as three values: the current hook function, the current hook mask, and the current hook count (as set

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

luaL_checkversion[-0, +0, v] void luaL_checkversion (lua_State *L); Checks whether the core running

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

luaL_pushresultsize[-?, +1, m] void luaL_pushresultsize (luaL_Buffer *B, size_t sz); Equivalent

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

lua_pushfstring[-0, +1, e] const char *lua_pushfstring (lua_State *L, const char *fmt, ...); Pushes

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

luaL_getmetatable[-0, +1, m] int luaL_getmetatable (lua_State *L, const char *tname); Pushes onto

2025-01-10 15:47:30
coroutine.status()
  • References/Lua/Lua/Standard Libraries/Coroutine Manipulation

coroutine.status (co) Returns the status of coroutine co, as a string: "running", if the coroutine is running (that is, it called status);

2025-01-10 15:47:30