parrotcode: Lua Basic Library | |
Contents | Language Implementations | Lua |
lib/luabasic.pir - Lua Basic Library
The basic library provides some core functions to Lua.
See "Lua 5.1 Reference Manual", section 5.1 "Basic Functions", http://www.lua.org/manual/5.1/manual.html#5.1.
_G
_G._G = _G
).
Lua itself does not use this variable; changing its value does not affect any environment,
nor vice-versa.
(Use setfenv
to change environments.)_VERSION
"Lua 5.1"
.assert (v [, message])
v
is false (i.e.,
nil or false); otherwise,
returns all its arguments.
message
is an error message; when absent,
it defaults to "assertion failed!"collectgarbage (opt [, arg])
opt
:"size"
is controlled by arg
(larger values mean more steps) in a non-specified way.
If you want to control the step size you must tune experimentally the value of arg
.
Returns true if the step finished a collection cycle.arg
/100 as the new value for the pause of the collector.arg
/100 as the new value for the step multiplier of the collector.dofile (filename)
dofile
executes the contents of the standard input (stdin
).
Returns all values returned by the chunk.
In case of errors,
dofile
propagates the error to its caller (that is,
dofile does not run in protected mode).error (message [, level])
message
as the error message.
Function error
never returns.error
adds some information about the error position at the beginning of the message.
The level
argument specifies how to get the error position.
With level 1 (the default),
the error position is where the error
function was called.
Level 2 points the error to where the function that called error
was called; and so on.
Passing a level 0 avoids the addition of error position information to the message.getfenv (f)
f
can be a Lua function or a number that specifies the function at that stack level: Level 1 is the function calling getfenv
.
If the given function is not a Lua function,
or if f
is 0,
getfenv
returns the global environment.
The default for f
is 1.getmetatable (object)
object
does not have a metatable,
returns nil.
Otherwise,
if the object's metatable has a "__metatable"
field,
returns the associated value.
Otherwise,
returns the metatable of the given object.ipairs (t)
t
,
and 0,
so that the construction for i,v in ipairs(t) do ... end
1,t[1]
), (2,t[2]
), ..., up to the first integer key with a nil value in the table.next
for the caveats of modifying the table during its traversal.load (func [, chunkname])
func
to get its pieces. Each call to func
must return a string that concatenates with previous results. A return of nil (or no value) signals the end of the chunk.chunkname
is used as the chunk name for error messages and debug information.loadfile ([filename])
load
, but gets the chunk from file filename
or from the standard input, if no file name is given.loadstring (string [, chunkname])
load
, but gets the chunk from the given string. assert(loadstring(s))()
next (table [, index])
next
returns the next index of the table and its associated value. When called with nil as its second argument, next
returns an initial index and its associated value. When called with the last index, or with nil in an empty table, next
returns nil. If the second argument is absent, then it is interpreted as nil. In particular, you can use next(t)
to check whether a table is empty.next
only considers fields with non-nil values. The order in which the indices are enumerated is not specified, even for numeric indices. (To traverse a table in numeric order, use a numerical for or the ipairs
function.)next
is undefined 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.pairs (t)
next
function, the table t
, and nil, so that the construction for k,v in pairs(t) do ... end
t
.next
for the caveats of modifying the table during its traversal.pcall (f, arg1, arg2, ...)
f
with the given arguments in protected mode. This means that any error inside f
is not propagated; instead, pcall
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, pcall
also returns all results from the call, after this first result. In case of any error, pcall
returns false plus the error message.print (e1, e2, ...)
stdout
, using the tostring
function to convert them to strings. print
is not intended for formatted output, but only as a quick way to show a value, typically for debugging. For formatted output, use string.format
.rawequal (v1, v2)
v1
is equal to v2
, without invoking any metamethod. Returns a boolean.rawget (table, index)
table[index]
, without invoking any metamethod. table
must be a table; index
is any value different from nil.rawset (table, index, value)
table[index]
to value, without invoking any metamethod. table
must be a table, index
is any value different from nil, and value
is any Lua value.table
.select (index, ...)
index
is a number, returns all arguments after argument number index
. Otherwise, index
must be the string "#"
, and select
returns the total number of extra arguments it received.setfenv (f, table)
f
can be a Lua function or a number that specifies the function at that stack level: Level 1 is the function calling setfenv
. setfenv
returns the given function.f
is 0 setfenv
changes the environment of the running thread. In this case, setfenv
returns no values.setmetatable (table, metatable)
"__metatable"
field, raises an error.table
.tonumber (e [, base])
tonumber
returns that number; otherwise, it returns nil.tostring (e)
format
."__tostring"
field, tostring
calls the corresponding value with e
as argument, and uses the result of the call as its result.type (v)
"nil"
(a string, not the value nil), "number"
, "string"
, "boolean"
, "table"
, "function"
, "thread"
, and "userdata"
.unpack (list [, i [, j]])
return list[i], list[i+1], ..., list[j]
i
is 1 and j
is the length of the list, as defined by the length operator.xpcall (f, err)
pcall
, except that you can set a new error handler.xpcall
calls function f
in protected mode, using err
as the error handler. Any error inside f
is not propagated; instead, xpcall
catches the error, calls the err
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, xpcall
also returns all results from the call, after this first result. In case of any error, xpcall
returns false plus the result from err
.Francois Perrad.
|