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

lua_getextraspace[-0, +0, –] void *lua_getextraspace (lua_State *L); Returns a pointer to a raw memory

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

string.byte (s [, i [, j]])s[i]s[i+1]s[j]iji

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

table.remove (list [, pos]) Removes from list the element at position pos, returning the value of the removed element. When pos is an integer

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

pairs (t) If t has a metamethod __pairs, calls it with t as argument and returns the first three results from the call. Otherwise

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

math.cos (x) Returns the cosine of x (assumed to be in radians).

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

luaL_checkinteger[-0, +0, v] lua_Integer luaL_checkinteger (lua_State *L, int arg); Checks whether

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

math.log (x [, base]) Returns the logarithm of x in the given base. The default for base is e (so that the function returns the natural logarithm

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

math.sqrt (x) Returns the square root of x. (You can also use the expression x^0.5 to compute this value.)

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

math.asin (x) Returns the arc sine of x (in radians).

2025-01-10 15:47:30