math.deg()
  • References/Lua/Lua/Standard Libraries/Mathematical Functions

math.deg (x) Converts the angle x from radians to degrees.

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

package.cpath The path used by require to search for a C loader. Lua

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

tonumber (e [, base]) When called with no base, tonumber tries to convert its argument to a number. If the argument is already a number or a string convertible

2025-01-10 15:47:30
debug.traceback()
  • References/Lua/Lua/Standard Libraries/The Debug Library

debug.traceback ([thread,] [message [, level]]) If message is present but is neither a string nor nil, this function returns message without further

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

string.upper (s)

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

lua_Alloc typedef void * (*lua_Alloc) (void *ud, void *ptr, size_t osize,

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

lua_callk[-(nargs + 1), +nresults, e] void lua_callk (lua_State *L, int nargs,

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

string.rep (s, n [, sep])nssepsepn (Note that it is very easy to exhaust the memory of your machine with a single

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

luaL_addvalue[-1, +?, m] void luaL_addvalue (luaL_Buffer *B); Adds the value at the top of the

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

3.4.1 – Arithmetic Operators Lua supports the following arithmetic operators: +: addition -: subtraction *:

2025-01-10 15:47:30