Table
table.concat
Description: concatenates all strings in the table, starting from i, ending with j (default 1, #t respectively), separating with the separator
value if defined, otherwise there is no separation.
Usage: table.concat(table [, separator [, i [, j]]])
Example:
table.insert
Description: inserts a value to the end of the table, or at pos
Usage: table.insert(table, [pos,] value)
Example:
table.maxn
Description: returns the highest numerical index found in the table (different from true size)
Usage: table.maxn(table)
Example:
table.remove
Description: removes a value from the table at the end, or at pos
Usage: table.remove(table [, pos])
Example:
table.sort
Description: sorts table with given comp
(comparison) function, if not given, <
is used by default, which results in least to greatest.
Usage: table.sort(table [, comp])
Example:
Last updated