Lua: Vararg

From Mario Fan Games Galaxy Wiki
Lua
Lua.gif
Basics
Intermediate
Advanced
XLua
Add to this template
 Standardwikimessagebox.png This article assumes the use of Lua 5.1.

Information may not be accurate or may need revision if you are using a different version.

A vararg statement is basically a group of arguments with a variable size. Usually, a function is defined to use only a certain number of arguments, but a vararg statement allows it to take an arbitrary amount. In Lua, a vararg statement is defined with three dots (...). This vararg statement represents a list of values (not a table in itself!) passed to the function, containing the arguments that were provided. A function can only contain one vararg statement, which must be the last argument if there are other named arguments.

The following function takes any number of values, chooses one at random, and returns it:

function choose(...)
     local args = {...}
     return args[math.random(#args)]
end

Vararg statements are useful when passing information transparently from one function to another, for example table lookup functions:

function callEvent(event_name, ...)
    events[event_name](...)
end