Basic Functions

The following are basic global functions that are available in Lua. For security reasons, certain functions in the standard Lua distribution are not available. For more information see Changes to Lua.

assert (v [, message])
Issues an error when the value of its argument 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!"

error (message [, level])
Terminates the last protected function called and returns message as the error message. Function error never returns.

Usually, 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.

_G
A global variable (not a function) that holds the global environment (that is, _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.)

getfenv ([f])
Returns the current environment in use by the function. 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)
If 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)
Returns three values: an iterator function, the table t, and 0, so that the construction

1
     for i,v in ipairs(t) do body end

will iterate over the pairs (1,t[1]), (2,t[2]), ..., up to the first integer key absent from the table.

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. 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.

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.)

The behavior of 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)
Returns three values: the next function, the table t, and nil, so that the construction

1
     for k,v in pairs(t) do body end

will iterate over all key–value pairs of table t.

See function next for the caveats of modifying the table during its traversal.

pcall (f, arg1, ...)
Calls function 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 false 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 (...)
Receives any number of arguments, and prints their values to 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)
Checks whether v1 is equal to v2, without invoking any metamethod. Returns a boolean.

rawget (table, index)
Gets the real value of table[index], without invoking any metamethod. table must be a table; index may be any value.

rawset (table, index, value)
Sets the real value of table[index] to value, without invoking any metamethod. table must be a table, index any value different from nil, and value any Lua value.

This function returns table.

select (index, ...)
If 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)
Sets the environment to be used by the given function. 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.

As a special case, when f is 0 setfenv changes the environment of the running thread. In this case, setfenv returns no values.

setmetatable (table, metatable)
Sets the metatable for the given table. (You cannot change the metatable of other types from Lua, only from C.) If metatable is nil, removes the metatable of the given table. If the original metatable has a "__metatable" field, raises an error.

This function returns table.

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 tonumber returns this number; otherwise, it returns nil.

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 'A' (in either upper or lower case) represents 10, 'B' represents 11, and so forth, with 'Z' representing 35. In base 10 (the default), the number can have a decimal part, as well as an optional exponent part (see §2.1). In other bases, only unsigned integers are accepted.

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 string.format.

If the metatable of e has a "__tostring" field, then tostring calls the corresponding value with e as argument, and uses the result of the call as its result.

type (v)
Returns the type of its only argument, coded as a string. The possible results of this function are "nil" (a string, not the value nil), "number", "string", "boolean", "table", "function", "thread", and "userdata".

unpack (list [, i [, j]])
Returns the elements from the given table. This function is equivalent to

1
     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, i is 1 and j is the length of the list, as defined by the length operator (see §2.5.5).

Replies

Viewing options

Select your preferred way to display the comments and click "Save settings" to activate your changes.
truBounz2011
User offline. Last seen 1 year 15 weeks ago. Offline
Joined: 18 Jan 2011

What's those commas that I see inside brackets? I tried to check somewhere what they mean but can't seem to find where it is explained. Sorry, maybe I missed it somewhere. For example, in the function next (table [, index]) what is the comma (,) before the "index"? Would appreciate help on this what should be rather simple yet esoteric issue. Thanks.

Gilbert's picture
Gilbert
User offline. Last seen 18 weeks 3 days ago. Offline
Alumni
Joined: 5 Apr 2010

Brackets indicate that a parameter is optional. So the next function can be used with or without the second parameter:

1
2
next(table)
next(table, index)

Here's an example:

1
2
3
4
local t = { "apple", "banana", "orange" }
 
print(next(t))  
print(next(t,2)) 

The first print statement will output "1    apple" in the terminal window. The second will output "3    orange".

msslife
User offline. Last seen 11 weeks 5 days ago. Offline
Joined: 28 Jan 2011

Why the output of the second statment will be orange?

I still can't get this next(t,2)

reykennethdmolina
User offline. Last seen 1 year 9 weeks ago. Offline
Joined: 14 Mar 2011

because t0 = apple t1 = banana and t2 = orange

array numbers start with 0

shidmei
User offline. Last seen 1 year 7 weeks ago. Offline
Joined: 28 Mar 2011

Looking into the Sample Code, creating a UITableView and Tab bar is not so straight forward compared to using native way. Best if there's a Corona API for UITableView and tab bar.

kaushik4u_1985
User offline. Last seen 41 weeks 5 days ago. Offline
Joined: 14 Apr 2011

But as far as i learnt in Lua array value starts from 1 instead of 0 as in the programming languages like C and Java.please check it once and do reply for this post.

leo.artfinal's picture
leo.artfinal
User offline. Last seen 12 weeks 19 hours ago. Offline
Joined: 20 Apr 2011

It seems that the next function gets the next value of the second parameter. So if you use this way: next(t, 2), that will return t[2+1] == t[3].

Sorry for some writing mistakes. I´m Brazilian.