=head1 NAME luafunc - standard library functions (standard library) =head1 OVERVIEW The standard Lua libraries provide useful functions that are implemented directly through the C API. Some of these functions provide essential services to the language (e.g., C and C); others provide access to "outside" services (e.g., I/O); and others could be implemented in Lua itself, but are quite useful or have critical performance requirements that deserve an implementation in C (e.g., C). All libraries are implemented through the official C API and are provided as separate C modules. Currently, Lua has the following standard libraries: =over 4 =item basic library; =item package library; =item string manipulation; =item table manipulation; =item mathematical functions (sin, log, etc.); =item input and output; =item operating system facilities; =item debug facilities. =back Except for the basic and package libraries, each library provides all its functions as fields of a global table or as methods of its objects. To have access to these libraries, the C host program must call C, which open all standard libraries. Alternatively, it can open them individually by calling C (for the basic library), C (for the package library), C (for the string library), C (for the table library), C (for the mathematical library), C (for the I/O and the Operating System libraries), and C (for the debug library). These functions are declared in C and should not be called directly: you must call them like any other Lua C function, e.g., by using C. =head1 REFERENCE The basic library provides some core functions to Lua. If you do not include this library in your application, you should check carefully whether you need to provide implementations for some of its facilities. =head2 C assert (v [, message]) Issues an error when the value of its argument C is false (i.e., C or C); otherwise, returns all its arguments. C is an error message; when absent, it defaults to "assertion failed!" =head2 C collectgarbage (opt [, arg]) This function is a generic interface to the garbage collector. It performs different functions according to its first argument, C: =over =item C<"stop"> stops the garbage collector. =item C<"restart"> restarts the garbage collector. =item C<"collect"> performs a full garbage-collection cycle. =item C<"count"> returns the total memory in use by Lua (in Kbytes). =item C<"step"> performs a garbage-collection step. The step "size" is controlled by C (larger values mean more steps) in a non-specified way. If you want to control the step size you must experimentally tune the value of C. Returns C if the step finished a collection cycle. =item C<"setpause"> sets C/100 as the new value for the I of the collector (see sect 2.10). =item C<"setstepmul"> sets C/100 as the new value for the I of the collector (see sect 2.10). =back =head2 C dofile (filename) Opens the named file and executes its contents as a Lua chunk. When called without arguments, C executes the contents of the standard input (C). Returns all values returned by the chunk. In case of errors, C propagates the error to its caller (that is, C does not run in protected mode). =head2 C error (message [, level]) Terminates the last protected function called and returns C as the error message. Function C never returns. Usually, C adds some information about the error position at the beginning of the message. The C argument specifies how to get the error position. With level 1 (the default), the error position is where the C function was called. Level 2 points the error to where the function that called C was called; and so on. Passing a level 0 avoids the addition of error position information to the message. =head2 C<_G> _G A global variable (not a function) that holds the global environment (that is, C<_G._G = _G>). Lua itself does not use this variable; changing its value does not affect any environment, nor vice-versa. (Use L to change environments.) =head2 C getfenv (f) Returns the current environment in use by the function. C can be a Lua function or a number that specifies the function at that stack level: Level 1 is the function calling C. If the given function is not a Lua function, or if C is 0, C returns the global environment. The default for C is 1. =head2 C getmetatable (object) If C does not have a metatable, returns C. Otherwise, if the object's metatable has a C<"__metatable"> field, returns the associated value. Otherwise, returns the metatable of the given object. =head2 C ipairs (t) Returns three values: an iterator function, the table C, and 0, so that the construction for i,v in ipairs(t) do body end will iterate over the pairs (C<1,t[1]>), (C<2,t[2]>), EEE, up to the first integer key absent from the table. See L for the caveats of modifying the table during its traversal. =head2 C load (func [, chunkname]) Loads a chunk using function C to get its pieces. Each call to C must return a string that concatenates with previous results. A return of C (or no value) signals the end of the chunk. If there are no errors, returns the compiled chunk as a function; otherwise, returns C plus the error message. The environment of the returned function is the global environment. C is used as the chunk name for error messages and debug information. =head2 C loadfile ([filename]) Similar to C, but gets the chunk from file C or from the standard input, if no file name is given. =head2 C loadstring (string [, chunkname]) Similar to C, but gets the chunk from the given string. To load and run a given string, use the idiom assert(loadstring(s))() =head2 C next (table [, index]) Allows a program to traverse all fields of a table. Its first argument is a table and its second argument is an index in this table. C returns the next index of the table and its associated value. When called with C as its second argument, C returns an initial index and its associated value. When called with the last index, or with C in an empty table, C returns C. If the second argument is absent, then it is interpreted as C. In particular, you can use C to check whether a table is empty. The order in which the indices are enumerated is not specified, I. (To traverse a table in numeric order, use a numerical C or the C function.) The behavior of C is I if, during the traversal, you assign any value to a non-existent field in the table. You may however modify existing fields. In particular, you may clear existing fields. =head2 C pairs (t) Returns three values: the C function, the table C, and C, so that the construction for k,v in pairs(t) do body end will iterate over all keyEvalue pairs of table C. See L for the caveats of modifying the table during its traversal. =head2 C pcall (f, arg1, ...) Calls function C with the given arguments in I. This means that any error inside C is not propagated; instead, C catches the error and returns a status code. Its first result is the status code (a boolean), which is true if the call succeeds without errors. In such case, C also returns all results from the call, after this first result. In case of any error, C returns C plus the error message. =head2 C print (...) Receives any number of arguments, and prints their values to C, using the C function to convert them to strings. C is not intended for formatted output, but only as a quick way to show a value, typically for debugging. For formatted output, use C. =head2 C rawequal (v1, v2) Checks whether C is equal to C, without invoking any metamethod. Returns a boolean. =head2 C rawget (table, index) Gets the real value of C, without invoking any metamethod. C must be a table; C may be any value. =head2 C rawset (table, index, value) Sets the real value of C to C, without invoking any metamethod. C
must be a table, C any value different from C, and C any Lua value. This function returns C
. =head2 C returns the total number of extra arguments it received. =head2 C setfenv (f, table) Sets the environment to be used by the given function. C can be a Lua function or a number that specifies the function at that stack level: Level 1 is the function calling C. C returns the given function. As a special case, when C is 0 C changes the environment of the running thread. In this case, C returns no values. =head2 C setmetatable (table, metatable) Sets the metatable for the given table. (You cannot change the metatable of other types from Lua, only from C.) If C is C, removes the metatable of the given table. If the original metatable has a C<"__metatable"> field, raises an error. This function returns C
. =head2 C tonumber (e [, base]) Tries to convert its argument to a number. If the argument is already a number or a string convertible to a number, then C returns this number; otherwise, it returns C. An optional argument specifies the base to interpret the numeral. The base may be any integer between 2 and 36, inclusive. In bases above 10, the letter 'C' (in either upper or lower case) represents 10, 'C' represents 11, and so forth, with 'C' representing 35. In base 10 (the default), the number may have a decimal part, as well as an optional exponent part (see sect 2.1). In other bases, only unsigned integers are accepted. =head2 C tostring (e) Receives an argument of any type and converts it to a string in a reasonable format. For complete control of how numbers are converted, use C. If the metatable of C has a C<"__tostring"> field, then C calls the corresponding value with C as argument, and uses the result of the call as its result. =head2 C type (v) Returns the type of its only argument, coded as a string. The possible results of this function are "C" (a string, not the value C), "C", "C", "C", "C
", "C", "C", and "C". =head2 C unpack (list [, i [, j]]) Returns the elements from the given table. This function is equivalent to return list[i], list[i+1], ..., list[j] except that the above code can be written only for a fixed number of elements. By default, C is 1 and C is the length of the list, as defined by the length operator (see sect 2.5.5). =head2 C<_VERSION> _VERSION A global variable (not a function) that holds a string containing the current interpreter version. The current contents of this variable is "C". =head2 C xpcall (f, err) This function is similar to C, except that you can set a new error handler. C calls function C in protected mode, using C as the error handler. Any error inside C is not propagated; instead, C catches the error, calls the C function with the original error object, and returns a status code. Its first result is the status code (a boolean), which is true if the call succeeds without errors. In this case, C also returns all results from the call, after this first result. In case of any error, C returns C plus the result from C. =head1 VERSION This is Lua version 5.1.1. =head1 CREDITS Lua is developed at Lua.org, a laboratory of the Department of Computer Science of PUC-Rio (the Pontifical Catholic University of Rio de Janeiro in Brazil). For more information about the authors, see http://www.lua.org/authors.html . =head1 LICENSE Lua is licensed under the terms of the MIT license reproduced below. This means that Lua is free software and can be used for both academic and commercial purposes at absolutely no cost. For details and rationale, see http://www.lua.org/license.html . ~~~~~ Copyright (C) 1994-2006 Lua.org, PUC-Rio. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ~~~~~