Precedence
  • References/Lua/Lua/Language/Expressions

3.4.8 – Precedence Operator precedence in Lua follows the table below, from lower to higher priority: or and < > <= >=

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

lua_len[-0, +1, e] void lua_len (lua_State *L, int index); Returns the length of the value at

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

io.input ([file]) When called with a file name, it opens the named file (in text mode), and sets its handle as the default input file. When called with a file handle, it simply

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

math.min (x, ···) Returns the argument with the minimum value, according to the Lua operator <. (integer/float)

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

lua_pushfstring[-0, +1, e] const char *lua_pushfstring (lua_State *L, const char *fmt, ...); Pushes

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

lua_type[-0, +0, –] int lua_type (lua_State *L, int index); Returns the type of the value in the given

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

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

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

os.tmpname () Returns a string with a file name that can be used for a temporary file. The file must be explicitly opened before its use and explicitly removed when no longer

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

luaL_dofile[-0, +?, e] int luaL_dofile (lua_State *L, const char *filename); Loads and runs the

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

lua_typename[-0, +0, –] const char *lua_typename (lua_State *L, int tp); Returns the name of the type encoded

2025-01-10 15:47:30