luaL_requiref
  • References/Lua/Lua/Auxiliary Library/Functions and Types

luaL_requiref[-0, +1, e] void luaL_requiref (lua_State *L, const char *modname, lua_CFunction

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

string.format (formatstring, ···) Returns a formatted version of its variable number of arguments following the description given in its first argument (which must be a string)

2025-01-10 15:47:30
math.randomseed()
  • References/Lua/Lua/Standard Libraries/Mathematical Functions

math.randomseed (x) Sets x as the "seed" for the pseudo-random generator: equal seeds produce equal sequences of numbers.

2025-01-10 15:47:30
math.type()
  • References/Lua/Lua/Standard Libraries/Mathematical Functions

math.type (x) Returns "integer" if x is an integer, "float" if it is a float, or nil if x is not a number.

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

lua_istable[-0, +0, –] int lua_istable (lua_State *L, int index); Returns 1 if the value at the given index

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

lua_rawseti[-1, +0, m] void lua_rawseti (lua_State *L, int index, lua_Integer i); Does the equivalent

2025-01-10 15:47:30
file:setvbuf()
  • References/Lua/Lua/Standard Libraries/Input and Output Facilities

file:setvbuf (mode [, size]) Sets the buffering mode for an output file. There are three available modes: "no": no buffering; the result of

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

ipairs (t) Returns three values (an iterator function, the table t, and 0) so that the construction for i,v in ipairs(t)

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