string.char()
  • References/Lua/Lua/Standard Libraries/String Manipulation

string.char (···) Numeric codes are not necessarily portable across platforms.

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

lua_checkstack[-0, +0, –] int lua_checkstack (lua_State *L, int n); Ensures that the stack has space for

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

loadfile ([filename [, mode [, env]]]) Similar to load, but gets the chunk

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

lua_KFunction typedef int (*lua_KFunction) (lua_State *L, int status, lua_KContext ctx); Type for continuation functions (see

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

luaL_buffinit[-0, +0, –] void luaL_buffinit (lua_State *L, luaL_Buffer *B); Initializes a buffer B

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

string.lower (s)

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_checklstring
  • References/Lua/Lua/Auxiliary Library/Functions and Types

luaL_checklstring[-0, +0, v] const char *luaL_checklstring (lua_State *L, int arg, size_t *l);

2025-01-10 15:47:30