file:read()
  • References/Lua/Lua/Standard Libraries/Input and Output Facilities

file:read (···) Reads the file file, according to the given formats, which specify what to read. For each format, the function returns a string or a number with the

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

luaL_pushresult[-?, +1, m] void luaL_pushresult (luaL_Buffer *B); Finishes the use of buffer B

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

lua_numbertointeger int lua_numbertointeger (lua_Number n, lua_Integer *p); Converts a Lua float to a Lua integer. This macro assumes

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

lua_isnone[-0, +0, –] int lua_isnone (lua_State *L, int index); Returns 1 if the given index is not valid

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

lua_getmetatable[-0, +(0|1), –] int lua_getmetatable (lua_State *L, int index); If the value at the given

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

luaL_optlstring[-0, +0, v] const char *luaL_optlstring (lua_State *L, int arg

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

math.sin (x) Returns the sine of x (assumed to be in radians).

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

luaL_traceback[-0, +1, m] void luaL_traceback (lua_State *L, lua_State *L1, const char *msg,

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

select (index, ···) If index is a number, returns all arguments after argument number index; a negative number indexes from the end (-1 is the last argument)

2025-01-10 15:47:30