Table.remove

From GiderosMobile
Revision as of 14:38, 23 August 2018 by Hgy29 (talk | contribs)

Available since: Gideros 2011.6

Description

Removes from table the element at position pos, shifting down other elements to close the space, if necessary. Returns the value of the removed element. The default value for pos is n, where n is the length of the table, so that a call table.remove(t) removes the last element of table t.

(varies) = table.remove(table,pos)

Parameters

table: (table) table from which to remove element
pos: (number) index at which to remove element (default is last element) optional

Return values

Returns (varies) removed value