Function Dump/Core Functions: Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>JulienDethurens
No edit summary
m (Text replacement - "<SyntaxHighlight code="lua">" to "<syntaxhighlight lang="lua">")
Tags: Mobile edit Mobile web edit
 
(28 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Map|Function Dump|Function Dump/Core Functions}}
{{Map|Function Dump}}
 
==Basic Functions==
==Basic Functions==


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.


===assert (<var>v</var> [, <var>message</var>])===


===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!"


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!"
{{Code and output|code=
 
assert (false, "This is an error message")
{{Example|1=<i></i> <!--Ignore this; it acts oddly if it isn't here-->
|output=
assert (false, "This is an error message")  
Tue Oct 07 10:15:37 2008 - Cmd:1: This is an error message
Will result in:
Tue Oct 07 10:15:37 2008 - Cmd, line 1
Tue Oct 07 10:15:37 2008 - <font color="red">Cmd:1: This is an error message</font color>
Tue Oct 07 10:15:37 2008 - stack end
Tue Oct 07 10:15:37 2008 - <font color="blue">Cmd, line 1</font color>
}}
Tue Oct 07 10:15:37 2008 - <font color="blue">stack end</font color>
{{Code and output|code=
 
assert (false)
assert (false)
|output=
Will result in:
Tue Oct 07 10:14:18 2008 - Cmd:1: assertion failed!  
Tue Oct 07 10:14:18 2008 - <font color="red">Cmd:1: assertion failed!</font color>
Tue Oct 07 10:14:18 2008 - Cmd, line 1
Tue Oct 07 10:14:18 2008 - <font color="blue">Cmd, line 1</font color>
Tue Oct 07 10:14:18 2008 - stack end
Tue Oct 07 10:14:18 2008 - <font color="blue">stack end</font color>
}}
 
{{Code and output|code=
assert (true)
assert (true)
Won't display anything at all.
}}
}}


===collectgarbage (opt [, arg])===
===collectgarbage (<var>opt</var> [, <var>arg</var>])===




This function is a generic interface to the garbage collector. It performs different functions according to its first argument, opt:
This {{type|function}} is a generic interface to the garbage collector. It performs different functions according to its first argument, opt:


    * "stop": stops the garbage collector.
* ''stop'': stops the garbage collector.
    * "restart": restarts the garbage collector.
* ''restart'': restarts the garbage collector.
    * "collect": performs a full garbage-collection cycle.
* ''collect'': performs a full garbage-collection cycle.
    * "count": returns the total memory in use by Lua (in Kbytes).
* ''count'': returns the total memory in use by Lua (in Kbytes).
    * "step": performs a garbage-collection step. The step "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 experimentally tune the value of arg. Returns true if the step finished a collection cycle.
* ''step'': performs a garbage-collection step. The step "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 experimentally tune the value of arg. Returns true if the step finished a collection cycle.
    * "setpause": sets arg/100 as the new value for the pause of the collector (see §2.10).
* ''setpause'': sets arg/100 as the new value for the pause of the collector.
    * "setstepmul": sets arg/100 as the new value for the step multiplier of the collector (see §2.10).
* ''setstepmul'': sets arg/100 as the new value for the step multiplier of the collector.


{{Example|
{{Example|{{Code and output|fit=output|code=
<pre>
t = {}
t = {}
for i = 0,20000 do
for i = 0,20000 do
table.insert(t,i,i)
table.insert(t,i,i)
end
end
print(collectgarbage("count")) --> ~535.7998046875


print(collectgarbage("count"))
t = nil
t = nil
print(collectgarbage("count"))
|output=
~535.7998046875
~23.7197265625
}}}}


print(collectgarbage("count")) --> ~23.7197265625
===dofile (<var>filename</var>)===
</pre>
}}


===dofile (filename)===


Opens the named file and executes its contents as a chunk. When called without arguments, 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).


Opens the named file and executes its contents as a Lua chunk. When called without arguments, 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).
{{Example|{{Code and output|fit=output|code=
--File name: Hello.lua
--File contents: print("Hello World!")


{{Example|
dofile("C:/Hello.lua")
'''File:''' <code>Hello.txt</code>
|output=
 
Hello World!
'''Contents:''' <code>print("Hello World!")</code>
<pre>
dofile("C:/Hello.txt")


Will result in:
}}}}
Hello World!
</pre>
}}


===error (message [, level])===
===error (<var>message</var> [, <var>level</var>])===




Terminates the last protected function called and returns message as the error message. Function error never returns.
Terminates the last protected {{type|function}} called and returns <var>message</var> as the error message. The error {{type|function}} 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.
Usually, error adds some information about the error position at the beginning of the message. The <var>level</var> argument specifies how to get the error position. With level 1 (the default), the error position is where the error {{type|function}} was called. Level 2 points the error to where the {{type|function}} that called error was called; and so on. Passing a level 0 avoids the addition of error position information to the message.


{{Example|1=<i></i>
{{Example|{{Code and output|fit=output|code=
  error ("this is an error message")
  error ("this is an error message")
  Will result in:
  |output=
  Tue Oct 07 08:18:36 2008 - <font color="red">Cmd:1: this is an error message</font color>
  Tue Oct 07 08:18:36 2008 - Cmd:1: this is an error message
  Tue Oct 07 08:18:36 2008 - <font color="blue">Cmd, line 1</font color>
  Tue Oct 07 08:18:36 2008 - Cmd, line 1
  Tue Oct 07 08:18:36 2008 - <font color="blue">stack end</font color>
  Tue Oct 07 08:18:36 2008 - stack end
}}
}}}}


===_G===
===_G===




A [[Tables|table]] that is shared between all scripts in one instance of Roblox. Scripts can use this to share data, including functions, between them.  
A {{type|table}} that is shared between all scripts in one instance of Roblox. Scripts can use this to share data, including functions, between them.  


Notes:
Notes:
*In [[Online mode]], scripts running in a [[LocalScript]] run on the player's computer, so they are in a separate instance of Roblox and can't share data with non-local scripts except by using objects such as [[IntValue]].
*In [[Online mode]], scripts running in a [[LocalScript]] run on the player's computer, so they are in a separate instance of Roblox and can't share data with non-local scripts except by using objects such as [[IntValue]].
*Until recently, this was the table that all the built-in functions were stored in, and it was possible to read values from it without writing "_G" in front. This is no longer the case.
*In the past, this was the {{type|table}} that all the built-in functions were stored in, and it was possible to read values from it without writing "_G" in front. This is no longer the case.


{{Example|
{{Example|{{Code and output|fit=output|code=
Script one:
--Script one:
<pre>
_G.variable = "This a variable in _G."
_G.variable = "This a variable in _G."
</pre>
 
Script two:
--Script two:
<pre>
while _G.variable == nil do wait() end --make sure that script one sets the variable before this one tries to read it
while _G.variable == nil do wait() end --make sure that script one sets the variable before this one tries to read it
print(_G.variable)
print(_G.variable)
--Outputs: "This a variable in _G."
|output=
</pre>
"This a variable in _G."
}}
}}}}


See also [[Global Functions]].
See also [[Global Functions]].


===<s>gcinfo ()</s>===
===<span style="text-decoration: line-through;">gcinfo ()</span>===


Returns amount of dynamic memory in use.  This is deprecated.  Use collectgarbage ("count") instead.
Returns amount of dynamic memory in use.  This is deprecated.  Use collectgarbage ("count") instead.


{{Example|1=<i></i>
{{Example|{{Code and output|fit=output|code=
<pre>
print (gcinfo ())
print (gcinfo ())
Will result in something like:
a=collectgarbage ("count")
print(a)
|output=
28  
28  
29.6875
}}}}


a=collectgarbage ("count")
===getfenv ([<var>f</var>])===
print(a)
Will result in something like:
29.6875
</pre>
}}


===getfenv ([f])===


Returns the current environment in use by the {{type|function}}. <var>f</var> can be a {{type|function}} or a {{type|number}} that specifies the {{type|function}} at that stack level: Level 1 is the {{type|function}} calling getfenv. If the given {{type|function}} is not a {{type|function}}, or if <var>f</var> is 0, getfenv returns the global environment. The default for <var>f</var> is 1.


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.
{{Example|{{Code and output|fit=output|code=


{{Example|1=<i></i>
<pre>
var1 = 7
var1 = 7
var2 = 9
var2 = 9
Line 140: Line 130:
print(i, " = ", v)
print(i, " = ", v)
end
end
Output:
|output=
script = Script
script = Script
var1 = 7
var1 = 7
var2 = 9
var2 = 9
</pre>
}}


===getmetatable (object)===
}}}}
 
===getmetatable (<var>object</var>)===
 


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.


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.
{{Example|{{Code and output|fit=output|code=


{{Example|
<pre>
t = {}
t = {}
print(getmetatable(t))
print(getmetatable(t))
Will result in:
nil
</pre>
<pre>
t = {}
setmetatable(t,{})
setmetatable(t,{})
print(getmetatable(t))
print(getmetatable(t))
|output=
nil
table: [hexadecimal memory address]
}}}}


Will result in:
===ipairs (<var>t</var>)===
table: 0687D540
</pre>
}}


===ipairs (t)===


Returns three values: an iterator {{type|function}}, the {{type|table}} <var>t</var>, and 0, so that the construction
<syntaxhighlight lang="lua">
for i,v in ipairs(t) do
--body
end
</syntaxhighlight>


Returns three values: an iterator function, the table t, and 0, so that the construction
will iterate over the pairs (1,t[1]), (2,t[2]), ···, up to the first integer key absent from the {{type|table}}.
 
    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.
{{Example|{{Code and output|fit=output|code=


{{Example|
<pre>
t = {'a', 'b', 'c', nil, 'd'}
t = {'a', 'b', 'c', nil, 'd'}
for i,v in ipairs(t) do
for i,v in ipairs(t) do
print(i, v)
print(i, v)
end
end
 
|output=
Will result in:
1 a
1 a
2 b
2 b
3 c
3 c
</pre>
}}}}
}}
 
===load (func [, chunkname])===


===load (<var>func</var> [, <var>chunkname</var>])===


Loads a chunk using function 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.


If there are no errors, returns the compiled chunk as a function; otherwise, returns nil plus the error message. The environment of the returned function is the global environment.
Loads a chunk using {{type|function}} <var>func</var> to get its pieces. Each call to <var>func</var> must return a {{type|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.
If there are no errors, returns the compiled chunk as a {{type|function}}; otherwise, returns {{nil}} plus the error message. The environment of the returned {{type|function}} is the global environment.


<var>chunkname</var> is used as the chunk name for error messages and debug information.


===loadfile ([filename])===


===loadfile ([<var>filename</var>])===


Similar to load, but gets the chunk from file filename or from the standard input, if no file name is given.


{{Example|
Similar to load, but gets the chunk from file <var>filename</var> or from the standard input, if no file name is given.
'''File:''' <code>file.txt</code>


'''Contents:''' <code>print("This is the contents of a file.")</code>
{{Example|{{Code and output|fit=output|code=
<pre>
--File name: file.lua
f = loadfile("C:/file.txt")
-- File contents: print("This is the contents of a file.")


f = loadfile("C:/file.lua")
f()
f()
 
|output=
Will result in:
This is the contents of a file.
This is the contents of a file.
</pre>
}}}}
}}




===loadstring (string [, chunkname])===
===loadstring (<var>string</var> [, <var>chunkname</var>])===




Similar to load, but gets the chunk from the given string.
Similar to load, but gets the chunk from the given {{type|string}}.
Loadstring returns a [[function]].
Loadstring returns a {{type|function}}.


To load and run a given string, use the idiom
To load and run a given {{type|string}}, use the idiom
<syntaxhighlight lang="lua">
assert(loadstring(s))()
</syntaxhighlight>


    assert(loadstring(s))()
{{Example|{{Code and output|fit=output|code=
 
{{Example|
<pre>
a = 2
a = 2
loadstring("b = 3")() -- This loads the string to a function, and then calls that function.
loadstring("b = 3")() -- This loads the string to a function, and then calls that function.
print(a+b)
print(a+b)
Will result in:
5
</pre>
<pre>
a = 5
a = 5
b = 1
b = 1
change = loadstring("b = 2") -- 'change' is now a function, which has not yet been run.
change = loadstring("b = 2")
print(a+b) -- Will be 6, as the function has not yet run.
print(a+b)
change() -- now the function has been run, and b is 2.
change()
print(a+b) -- Will be 7, as the function has now been run.
print(a+b)
</pre>
|output=
}}
5
6
7
}}}}


===''newproxy'' (boolean ''or'' proxy)===
===<var>newproxy</var> (boolean ''or'' proxy)===
''Undocumented feature of Lua.''
''Undocumented feature of Lua.''


Arguments:  
Arguments:  
boolean - returned proxy has metatable  
{{type|boolean}} - returned proxy has metatable  
''or''  
''or''  
userdata - different proxy created with newproxy
{{type|userdata}} - different proxy created with newproxy


Creates a blank userdata with an empty metatable, or with the metatable of another proxy.
Creates a blank {{type|userdata}} with an empty metatable, or with the metatable of another proxy.


{{Example|
{{Example|{{Code and output|fit=output|code=
<pre>local a = newproxy(true)  
local a = newproxy(true)  
local mt = getmetatable(a)  
local mt = getmetatable(a)  
print( mt ~= nil ) --> true
print( mt ~= nil )


local b = newproxy(a)  
local b = newproxy(a)  
print( mt == getmetatable(b) ) --> true
print( mt == getmetatable(b) )


local c = newproxy(false)  
local c = newproxy(false)  
print( getmetatable(c) ~= nil ) --> false
print( getmetatable(c) ~= nil )


print( a.Name ) --> attempt to index local 'a' (a userdata value)  
print( a.Name )
mt.__index = {Name="Proxy"}  
mt.__index = {Name="Proxy"}  
print( a.Name ) --> Proxy
print( a.Name )
print( b.Name ) --> Proxy
print( b.Name )
</pre>
|output=
}}
true
true
false
attempt to index local 'a' (a userdata value)
Proxy
Proxy
}}}}


===next (table [, index])===
===next (<var>table</var> [, <var>index</var>])===




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.
Allows a program to traverse all fields of a {{type|table}}. Its first argument is a {{type|table}} and its second argument is an index in this {{type|table}}. next returns the next index of the {{type|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 {{type|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 {{type|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 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 {{type|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.
The behavior of next is undefined if, during the traversal, you assign any value to a non-existent field in the {{type|table}}. You may however modify existing fields. In particular, you may clear existing fields.


{{Example|
{{Example|{{Code and output|code=
<pre>
days = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"}
days = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"}
print(next(days))
print(next(days))
print(next(days,4))
print(next(days,4))
 
|output=
Will result in:
1 Sunday
1 Sunday
5 Thursday -- cf. print(days[4]), which gives you Wednesday
5 Thursday -- cf. print(days[4]), which gives you Wednesday
</pre>
}}}}
}}
 
===pairs (t)===


===pairs (<var>t</var>)===


Returns three values: the next function, the table t, and nil, so that the construction


    for k,v in pairs(t) do body end
Returns three values: the next {{type|function}}, the {{type|table}} t, and {{nil}}, so that the construction
<syntaxhighlight lang="lua">
for k,v in pairs(t) do body end
</syntaxhighlight>


will iterate over all key–value pairs of table t.
will iterate over all key–value pairs of {{type|table}} t.


See function next for the caveats of modifying the table during its traversal.
See {{type|function}} next for the caveats of modifying the {{type|table}} during its traversal.


{{Example|
{{Example|{{Code and output|fit=output|code=
<pre>
t = {1,2,"a","d",c = 12, q = 20}
t = {1,2,"a","d",c = 12, q = 20}
for i,v in pairs(t) do
for i,v in pairs(t) do
print(i,v)
print(i,v)
end
end
 
|output=
Will result in:
1 1
1 1
2 2
2 2
Line 327: Line 306:
c 12
c 12
q 20
q 20
</pre>
}}}}
}}


===pcall (f, arg1, ···)===
===pcall (<var>f</var>, <var>arg1</var>, <var>···</var>)===




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 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.
Calls {{type|function}} <var>f</var> with the given arguments in protected mode. This means that any error inside <var>f</var> 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.


{{Example|
{{Example|{{Code and output|fit=output|code=
<pre>
if pcall (function() print("Hi Mom!") end) then
if pcall (function() print("Hi Mom!") end) then
else print("There were errors")
else print("There were errors")
end
end


Will result in:
Hi Mom!
</pre>
<pre>
if pcall (function() ppppprint("Hi Mom!") end) then
if pcall (function() ppppprint("Hi Mom!") end) then
else print("There were errors")
else print("There were errors")
end
end
|output=
Hi Mom!


Will result in:
There were errors
There were errors
</pre>
}}}}
}}


'''NOTE:''' You cannot use a function that yields the running coroutine in use by pcall. That includes the wait function. You will get an error about not being able to resume a dead coroutine and not being able to yield across the C boundary.
'''NOTE:''' You cannot use a {{type|function}} that yields the running coroutine in use by pcall. That includes the [[wait]] {{type|function}}. You will get an error about not being able to resume a dead coroutine and not being able to yield across the C boundary.


===print (···)===
===print (<var>···</var>)===




Receives any number of arguments, and prints their values to the output, 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.
Receives any number of arguments, and prints their values to the output, using the tostring {{type|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.


{{Example|
{{Example|{{Code and output|fit=output|code=
<pre>
print ("Hello!")
print ("Hello!")
 
|output=
Will result in:
Hello!
Hello!
</pre>
}}}}
}}


===rawequal (v1, v2)===
===rawequal (<var>v1</var>, <var>v2</var>)===




Checks whether v1 is equal to v2, without invoking any metamethod. Returns a boolean.
Checks whether <var>v1</var> is equal to <var>v2</var>, without invoking any metamethod. Returns a {{type|boolean}}.


{{Example|
{{Example|{{Code and output|fit=output|code=
<pre>
print(rawequal (5, 3))
print(rawequal (5, 3))
 
print(rawequal (5, 5))
Will result in:
|output=
false
false
</pre>
<pre>
print(rawequal (5, 5))
Will result in:
true
true
</pre>
}}}}
}}


===rawget (table, index)===
===rawget (<var>table</var>, <var>index</var>)===




Gets the real value of table[index], without invoking any metamethod. table must be a table; index may be any value.
Gets the real value of <var>table</var>[<var>index</var>], without invoking any [[Metatables#Metamethods|metamethod]]. <var>table</var> must be a {{type|table}}; <var>index</var> may be any value.


{{Example|
{{Example|{{Code and output|fit=output|code=
<pre>
days = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"}
days = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"}
print(rawget (days, 2))
print(rawget (days, 2))
 
|output=
Will result in:
Monday
Monday
</pre>
}}}}
}}


===rawset (table, index, value)===
===rawset (<var>table</var>, <var>index</var>, <var>value</var>)===




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.
Sets the real value of <var>table</var>[<var>index</var>] to <var>value</var>, without invoking any metamethod. <var>table</var> must be a {{type|table}}, <var>index</var> any value different from {{nil}}, and <var>value</var> any value.


This function returns table.
This {{type|function}} returns <var>table</var>.


{{Example|
{{Example|{{Code and output|fit=output|code=
<pre>
rawset (_G, "test", 42)  
rawset (_G, "test", 42)  
print (test)
print (test)
 
|output=
Will result in:
42
42
</pre>
}}}}
}}


===select (index, ···)===
===select (<var>index</var>, <var>···</var>)===




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.
If index is a {{type|number}}, returns all arguments after argument number <var>index</var>. Otherwise, <var>index</var> must be the {{type|string}} "#", and select returns the total number of extra arguments it received.


{{Example|
{{Example|{{Code and output|fit=output|code=
<pre>
print(select (3, "a", "b", "c", "d", "e", 1, 2, 3))
print(select (3, "a", "b", "c", "d", "e", 1, 2, 3))
Will result in:
print(select ("#", "a", "b", "c", "d", "e", 1, 2, 3))
|output=
c d e 1 2 3
c d e 1 2 3
print(select ("#", "a", "b", "c", "d", "e", 1, 2, 3))
Will result in:
8
8
</pre>
}}}}
}}


===setfenv (f, table)===
===setfenv (<var>f</var>, <var>table</var>)===




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.
Sets the environment to be used by the given {{type|function}}. <var>f</var> can be a {{type|function}} or a {{type|number}} that specifies the {{type|function}} at that stack level: Level 1 is the {{type|function}} calling setfenv. setfenv returns the given {{type|function}}.


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


{{Example|
{{Example|{{Code and output|fit=output|code=
<pre>
_G.a = 1  -- create a global variable
_G.a = 1  -- create a global variable
setfenv(1, {_G = _G}) -- change current environment
setfenv(1, {_G = _G}) -- change current environment
_G.print(a)     --> nil
_G.print(a)
_G.print(_G.a)   --> 1
_G.print(_G.a)
 
|output=
Will result in:
nil 1
nil 1
[http://www.lua.org/pil/14.3.html]
[http://www.lua.org/pil/14.3.html]
</pre>
}}}}
}}


===setmetatable (table, metatable)===
===setmetatable (<var>table</var>, <var>metatable</var>)===




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.
Sets the metatable for the given {{type|table}}. (You cannot change the metatable of other types from Lua, only from C.) If metatable is {{nil}}, removes the metatable of the given {{type|table}}. If the original metatable has a "__metatable" field, raises an error.


This function returns table.
This {{type|function}} returns <var>table</var>.


{{Example|
{{Example|{{Code and output|fit=output|code=
<pre>
t = {"a","b","c"}
t = {"a","b","c"}
mt = {"Orange","Apple","Microsoft"}
mt = {"Orange","Apple","Microsoft"}
Line 475: Line 425:
print(i,v)
print(i,v)
end
end
 
|output=
Will result in:
1 Orange
1 Orange
2 Apple
2 Apple
3 Microsoft
3 Microsoft
</pre>
}}}}
}}


===tonumber (e [, base])===
===tonumber (<var>e</var> [, <var>base</var>])===




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.
Tries to convert its argument to a {{type|number}}. If the argument is already a {{type|number}} or a {{type|string}} convertible to a  
{{type|number}}, then tonumber returns this {{type|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 may have a decimal part, as well as an optional exponent part (see §2.1). In other bases, only unsigned integers are accepted.
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 {{type|number}} may have a decimal part, as well as an optional exponent part (see §2.1). In other bases, only unsigned integers are accepted.


{{Example|
{{Example|{{Code and output|fit=output|code=
<pre>
print(tonumber(255))
print(tonumber (11111111, 2))
print(tonumber (11111111, 2))
 
print(tonumber ("FF", 16))
Will result in:
|output=
255
255
255
</pre>
<pre>
print(tonumber ("FF", 16))
Will result in:
255
255
</pre>
}}}}
}}


===tostring (e)===
===tostring (<var>e</var>)===




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.
Receives an argument of any type and converts it to a {{type|string}} in a reasonable format. For complete control of how {{type|number}} 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.
If the [[metatables|metatable]] of <var>e</var> has a "__tostring" field, then tostring calls the corresponding value with <var>e</var> as argument, and uses the result of the call as its result.


{{Example|
{{Example|{{Code and output|fit=output|code=
<pre>
a=tostring("The answer to 2+2 is "  .. 2+2)
a=tostring("The answer to 2+2 is "  .. 2+2)
print(a)
print(a)
 
|output=
Will result in:
The answer to 2+2 is 4
The answer to 2+2 is 4
</pre>
}}}}
}}


===type (v)===
===type (<var>v</var>)===




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".
Returns the type of its only argument, coded as a {{type|string}}. The possible results of this function are "nil" (a {{type|string}}, not the value {{nil}}), "number", "string", "boolean", "table", "function", "thread", and "userdata".


{{Example|
{{Example|{{Code and output|fit=output|code=
<pre>
print(type (true))
print(type (true))
 
print(type (3))
Will result in:
|output=
boolean
boolean
</pre>
<pre>
print(type (3))
Will result in:
number
number
</pre>
}}}}
}}


===unpack (list [, i [, j]])===
===unpack (<var>list</var> [, <var>i</var> [, <var>j</var>]])===
Returns the elements from the given table. This function is equivalent to
Returns the elements from the given {{type|table}}. This {{type|function}} is equivalent to
<syntaxhighlight lang="lua">
return list[i], list[i+1], ···, list[j]
</syntaxhighlight>


    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, <var>i</var> is 1 and <var>j</var> is the length of the list, as defined by the length operator.


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).
{{Example|{{Code and output|fit=output|code=
 
{{Example|
<pre>
t = { "the", "quick", "brown" }
t = { "the", "quick", "brown" }
print (unpack (t))
print (unpack (t))
Will result in:
|output=
the quick brown
the quick brown
</pre>
}}}}
}}


===_VERSION===
===_VERSION===




A global variable (not a function) that holds a string containing the current interpreter version. The current contents of this variable is "Lua 5.1".
A global variable (not a {{type|function}}) that holds a {{type|string}} containing the current interpreter version. The current contents of this variable is "Lua 5.1".


{{Example|
{{Example|{{Code and output|fit=output|code=
<pre>
print(_VERSION)
print(_VERSION)
 
|output=
Results in:
Lua 5.1
Lua 5.1
</pre>
}}}}
}}


===xpcall (f, err)===
===xpcall (<var>f</var>, <var>err</var>)===




This function is similar to pcall, except that you can set a new error handler.
This {{type|function}} is similar to 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.
xpcall calls {{type|function}} <var>f</var> in protected mode, using <var>err</var> as the error handler. Any error inside <var>f</var> is not propagated; instead, xpcall catches the error, calls the <var>err</var> {{type|function}} with the original error object, and returns a status code. Its first result is the status code (a {{type|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.


{{Example|
{{Example|{{Code and output|code=
<pre>
function handle(err)
function handle(err)
return "ERROR: " .. err:gsub("(.-:)","")
return "ERROR: " .. err:gsub("(.-:)","")
Line 591: Line 520:


print(xpcall(f,handle))
print(xpcall(f,handle))
 
|output=
Will result in:
false ERROR: attempt to perform arithmetic on local 'a' (a nil value)
false ERROR: attempt to perform arithmetic on local 'a' (a nil value)
</pre>
}}}}
}}
----

Latest revision as of 01:29, 27 April 2023

Basic Functions

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!"

assert (false, "This is an error message")

Tue Oct 07 10:15:37 2008 - Cmd:1: This is an error message Tue Oct 07 10:15:37 2008 - Cmd, line 1

Tue Oct 07 10:15:37 2008 - stack end
assert (false)

Tue Oct 07 10:14:18 2008 - Cmd:1: assertion failed! Tue Oct 07 10:14:18 2008 - Cmd, line 1

Tue Oct 07 10:14:18 2008 - stack end
assert (true)
No output

collectgarbage (opt [, arg])

This function is a generic interface to the garbage collector. It performs different functions according to its first argument, opt:

  • stop: stops the garbage collector.
  • restart: restarts the garbage collector.
  • collect: performs a full garbage-collection cycle.
  • count: returns the total memory in use by Lua (in Kbytes).
  • step: performs a garbage-collection step. The step "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 experimentally tune the value of arg. Returns true if the step finished a collection cycle.
  • setpause: sets arg/100 as the new value for the pause of the collector.
  • setstepmul: sets arg/100 as the new value for the step multiplier of the collector.
Example

~535.7998046875

~23.7197265625
t = {}
for i = 0,20000 do
	table.insert(t,i,i)
end

print(collectgarbage("count"))
t = nil
print(collectgarbage("count"))


dofile (filename)

Opens the named file and executes its contents as a chunk. When called without arguments, 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).

Example
Hello World!
--File name: Hello.lua
--File contents: print("Hello World!")

dofile("C:/Hello.lua")


error (message [, level])

Terminates the last protected function called and returns message as the error message. The error function 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.

Example

Tue Oct 07 08:18:36 2008 - Cmd:1: this is an error message

Tue Oct 07 08:18:36 2008 - Cmd, line 1
Tue Oct 07 08:18:36 2008 - stack end
error ("this is an error message")


_G

A table that is shared between all scripts in one instance of Roblox. Scripts can use this to share data, including functions, between them.

Notes:

  • In Online mode, scripts running in a LocalScript run on the player's computer, so they are in a separate instance of Roblox and can't share data with non-local scripts except by using objects such as IntValue.
  • In the past, this was the table that all the built-in functions were stored in, and it was possible to read values from it without writing "_G" in front. This is no longer the case.
Example
"This a variable in _G."
--Script one:
_G.variable = "This a variable in _G."

--Script two:
while _G.variable == nil do wait() end --make sure that script one sets the variable before this one tries to read it
print(_G.variable)


See also Global Functions.

gcinfo ()

Returns amount of dynamic memory in use. This is deprecated. Use collectgarbage ("count") instead.

Example

28

29.6875
print (gcinfo ())
a=collectgarbage ("count")
print(a)


getfenv ([f])

Returns the current environment in use by the function. f can be a 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 function, or if f is 0, getfenv returns the global environment. The default for f is 1.

Example

script = Script var1 = 7

var2 = 9
var1 = 7
var2 = 9
for i, v in pairs(getfenv()) do
	print(i, " = ", v)
end


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.

Example

nil

table: [hexadecimal memory address]
t = {}
print(getmetatable(t))
setmetatable(t,{})
print(getmetatable(t))


ipairs (t)

Returns three values: an iterator function, the table t, and 0, so that the construction

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.

Example

1 a 2 b

3 c
t = {'a', 'b', 'c', nil, 'd'}
for i,v in ipairs(t) do
	print(i, v)
end


load (func [, chunkname])

Loads a chunk using function 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.

If there are no errors, returns the compiled chunk as a function; otherwise, returns nil plus the error message. The environment of the returned function is the global environment.

chunkname is used as the chunk name for error messages and debug information.


loadfile ([filename])

Similar to load, but gets the chunk from file filename or from the standard input, if no file name is given.

Example
This is the contents of a file.
--File name: file.lua
-- File contents: print("This is the contents of a file.")

f = loadfile("C:/file.lua")
f()


loadstring (string [, chunkname])

Similar to load, but gets the chunk from the given string. Loadstring returns a function.

To load and run a given string, use the idiom

assert(loadstring(s))()
Example

5 6

7
a = 2
loadstring("b = 3")()		-- This loads the string to a function, and then calls that function.
print(a+b)
a = 5
b = 1
change = loadstring("b = 2")
print(a+b)
change()
print(a+b)


newproxy (boolean or proxy)

Undocumented feature of Lua.

Arguments: boolean - returned proxy has metatable or userdata - different proxy created with newproxy

Creates a blank userdata with an empty metatable, or with the metatable of another proxy.

Example

true true false attempt to index local 'a' (a userdata value) Proxy

Proxy
local a = newproxy(true) 
local mt = getmetatable(a) 
print( mt ~= nil )

local b = newproxy(a) 
print( mt == getmetatable(b) )

local c = newproxy(false) 
print( getmetatable(c) ~= nil )

print( a.Name )
mt.__index = {Name="Proxy"} 
print( a.Name )
print( b.Name )


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.

Example
days = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"}
print(next(days))
print(next(days,4))

1 Sunday

5 Thursday -- cf. print(days[4]), which gives you Wednesday


pairs (t)

Returns three values: the next function, the table t, and nil, so that the construction

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.

Example

1 1 2 2 3 a 4 d c 12

q 20
t = {1,2,"a","d",c = 12, q = 20}
for i,v in pairs(t) do
	print(i,v)
end


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

Example

Hi Mom!

There were errors
if pcall (function() print("Hi Mom!") end) then
else print("There were errors")
end

if pcall (function() ppppprint("Hi Mom!") end) then
else print("There were errors")
end


NOTE: You cannot use a function that yields the running coroutine in use by pcall. That includes the wait function. You will get an error about not being able to resume a dead coroutine and not being able to yield across the C boundary.

print (···)

Receives any number of arguments, and prints their values to the output, 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.

Example
Hello!
print ("Hello!")


rawequal (v1, v2)

Checks whether v1 is equal to v2, without invoking any metamethod. Returns a boolean.

Example

false

true
print(rawequal (5, 3))
print(rawequal (5, 5))


rawget (table, index)

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

Example
Monday
days = {"Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday"}
print(rawget (days, 2))


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

This function returns table.

Example
42
rawset (_G, "test", 42) 
print (test)


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.

Example

c d e 1 2 3

8
print(select (3, "a", "b", "c", "d", "e", 1, 2, 3))
print(select ("#", "a", "b", "c", "d", "e", 1, 2, 3))


setfenv (f, table)

Sets the environment to be used by the given function. f can be a 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.

Example

nil 1

[1]
_G.a = 1   -- create a global variable
setfenv(1, {_G = _G}) -- change current environment
_G.print(a)
_G.print(_G.a)


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.

Example

1 Orange 2 Apple

3 Microsoft
t = {"a","b","c"}
mt = {"Orange","Apple","Microsoft"}

setmetatable(t,mt)

for i,v in pairs(getmetatable(t)) do
	print(i,v)
end


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 may have a decimal part, as well as an optional exponent part (see §2.1). In other bases, only unsigned integers are accepted.

Example

255 255

255
print(tonumber(255))
print(tonumber (11111111, 2))
print(tonumber ("FF", 16))


tostring (e)

Receives an argument of any type and converts it to a string in a reasonable format. For complete control of how number 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.

Example
The answer to 2+2 is 4
a=tostring("The answer to 2+2 is "  .. 2+2)
print(a)


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

Example

boolean

number
print(type (true))
print(type (3))


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

Example
the quick brown
t = { "the", "quick", "brown" }
print (unpack (t))


_VERSION

A global variable (not a function) that holds a string containing the current interpreter version. The current contents of this variable is "Lua 5.1".

Example
Lua 5.1
print(_VERSION)


xpcall (f, err)

This function is similar to 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.

Example
function handle(err)
	return "ERROR: " .. err:gsub("(.-:)","")
end

function f()
	local a = nil
	return a+1
end

print(xpcall(f,handle))
false ERROR: attempt to perform arithmetic on local 'a' (a nil value)