load()
  • References/Lua/Lua/Standard Libraries/Basic Functions

load (chunk [, chunkname [, mode [, env]]]) Loads a chunk. If chunk is a string, the chunk is this string. If chunk is a function, load

2025-01-10 15:47:30
string.packsize()
  • References/Lua/Lua/Standard Libraries/String Manipulation

string.packsize (fmt) Returns the size of a string resulting from string

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

lua_toboolean[-0, +0, –] int lua_toboolean (lua_State *L, int index); Converts the Lua value at the given

2025-01-10 15:47:30
string.unpack()
  • References/Lua/Lua/Standard Libraries/String Manipulation

string.unpack (fmt, s [, pos]) Returns the values packed in string s (see

2025-01-10 15:47:30
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
lua_pushlstring
  • References/Lua/Lua/API/Functions and Types

lua_pushlstring[-0, +1, m] const char *lua_pushlstring (lua_State *L, const char *s, size_t len);

2025-01-10 15:47:30
Blocks
  • References/Lua/Lua/Language/Statements

3.3.1 – Blocks A block is a list of statements, which are executed sequentially: block ::= {stat} Lua has empty statements that

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

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

2025-01-10 15:47:30
utf8.codes()
  • References/Lua/Lua/Standard Libraries/UTF-8 Support

utf8.codes (s) Returns values so that the construction for p, c in utf8.codes(s) do body end will iterate over all characters

2025-01-10 15:47:30
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