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

lua_pushnil[-0, +1, –] void lua_pushnil (lua_State *L); Pushes a nil value onto the stack.

2025-01-10 15:47:30
Function Calls
  • References/Lua/Lua/Language/Expressions

3.4.10 – Function Calls A function call in Lua has the following syntax: functioncall ::= prefixexp args In a function call, first prefixexp

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
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
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
os.difftime()
  • References/Lua/Lua/Standard Libraries/Operating System Facilities

os.difftime (t2, t1) Returns the difference, in seconds, from time t1 to time t2 (where the times are values returned by

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

lua_concat[-n, +1, e] void lua_concat (lua_State *L, int n); Concatenates the n values

2025-01-10 15:47:30