[arg] description = 'Command-line arguments of Lua Standalone.' [assert] description = 'Calls error if the value of its argument is false.' [collectgarbage] [[.enums]] name = 'opt' enum = 'collect' description = 'Performs a full garbage-collection cycle.' `````````` name = 'opt' enum = 'stop' description = 'Stops automatic execution.' `````````` name = 'opt' enum = 'restart' description = 'Restarts automatic execution.' `````````` name = 'opt' enum = 'count' description = 'Returns the total memory in Kbytes.' `````````` name = 'opt' enum = 'step' description = 'Performs a garbage-collection step.' `````````` name = 'opt' enum = 'setpause' description = 'Set pause.' `````````` name = 'opt' enum = 'setstepmul' description = 'Set step multiplier.' `````````` name = 'opt' enum = 'isrunning' description = 'Returns whether the collector is running.' [dofile] description = 'Opens the named file and executes its contents as a Lua chunk.' [error] description = 'Terminates the last protected function called and returns message as the error object.' [_G] description = 'Holds the global environment.' [getmetatable] description = 'Returns the metatable of the given object.' [ipairs] description = [[ ---------------- ```lua for i, v in ipairs(t) do body end ``` ]] [load] description = 'Loads a chunk.' [[.enums]] name = 'mode' enum = 'b' description = 'Only binary chunks.' `````````` name = 'mode' enum = 't' description = 'Only text chunks.' `````````` name = 'mode' enum = 'bt' description = 'Both binary and text.' [loadfile] description = 'Loads a chunk from file.' [[.enums]] name = 'mode' enum = 'b' description = 'Only binary chunks.' `````````` name = 'mode' enum = 't' description = 'Only text chunks.' `````````` name = 'mode' enum = 'bt' description = 'Both binary and text.' [next] description = 'Returns the next index of the table and its associated value.' [pairs] description = [[ ---------------- ```lua for k, v in pairs(t) do body end ``` ]] [pcall] description = 'Calls function with the given arguments in protected mode.' [print] description = 'Receives any number of arguments and prints their values to stdout.' [rawequal] description = 'Checks whether v1 is equal to v2, without invoking the `__eq` metamethod.' [rawget] description = 'Gets the real value of `table[index]`, without invoking the `__index` metamethod.' [rawlen] description = 'Returns the length of the object `v`, without invoking the `__len` metamethod.' [rawset] description = 'Sets the real value of `table[index]` to `value`, without invoking the `__newindex` metamethod.' [select] [[.enums]] name = 'index' enum = '#' description = 'Returns the total number of extra arguments.' `````````` name = 'index' code = 'integer' description = 'Returns all arguments after number `index`.' [setmetatable] description = 'Sets the metatable for the given table.' [tonumber] description = 'Tries to convert its argument to a number.' [tostring] description = 'Receives a value of any type and converts it to a string in a human-readable format.' [type] description = 'Returns the type of its only argument, coded as a string.' [_VERSION] description = 'Running Lua version.' [xpcall] description = 'Calls function f with the given arguments in protected mode with a new message handler.' [require] description = 'Loads the given module.'