lua_insert
  • References/Lua/Lua/API/Functions and Types

lua_insert[-1, +1, –] void lua_insert (lua_State *L, int index); Moves the top element into the given valid

2025-01-10 15:47:30
Relational Operators
  • References/Lua/Lua/Language/Expressions

3.4.4 – Relational Operators Lua supports the following relational operators: ==: equality ~=: inequality <:

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

table.unpack (list [, i [, j]]) Returns the elements from the given list. This function is equivalent to return list[i], list[i+1]

2025-01-10 15:47:30
package.searchers
  • References/Lua/Lua/Standard Libraries/Modules

package.searchers A table used by require to control how to load modules.

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

lua_setfield[-1, +0, e] void lua_setfield (lua_State *L, int index, const char *k); Does the equivalent

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

luaL_loadfile[-0, +1, m] int luaL_loadfile (lua_State *L, const char *filename); Equivalent to

2025-01-10 15:47:30
os.time()
  • References/Lua/Lua/Standard Libraries/Operating System Facilities

os.time ([table]) Returns the current time when called without arguments, or a time representing the local date and time specified by the given table. This table must have fields

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

lua_pushstring[-0, +1, m] const char *lua_pushstring (lua_State *L, const char *s); Pushes the

2025-01-10 15:47:30
package.preload
  • References/Lua/Lua/Standard Libraries/Modules

package.preload A table to store loaders for specific modules (see require).

2025-01-10 15:47:30
table.concat()
  • References/Lua/Lua/Standard Libraries/Table Manipulation

table.concat (list [, sep [, i [, j]]]) Given a list where all elements are strings or numbers, returns the string list[i]..sep..list[i+1] ··· sep..list[j]. The default

2025-01-10 15:47:30