Difference between revisions of "Unpack"

From OpenEUO
Jump to: navigation, search
 
Line 7: Line 7:
  
 
[[Select]]
 
[[Select]]
 +
 +
[[Table.concat]]
  
 
[http://www.lua.org/manual/5.1/manual.html#2.5.5 Lua Manual - The length operator #]
 
[http://www.lua.org/manual/5.1/manual.html#2.5.5 Lua Manual - The length operator #]
  
 
[http://www.lua.org/manual/5.1/manual.html#2.5.9 Lua Manual - Variadic Expressions (...)]
 
[http://www.lua.org/manual/5.1/manual.html#2.5.9 Lua Manual - Variadic Expressions (...)]

Latest revision as of 13:18, 9 October 2010

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 (see §2.5.5).

Select

Table.concat

Lua Manual - The length operator #

Lua Manual - Variadic Expressions (...)