Difference between revisions of "Table"

From SkyCorp Global
(Created page with "NOTE: This class is lowercase, ie: 'table' == Public Methods == === static foreach === === static keys ===")
 
 
(2 intermediate revisions by the same user not shown)
Line 1: Line 1:
 
NOTE: This class is lowercase, ie: 'table'
 
NOTE: This class is lowercase, ie: 'table'
 +
 +
The [https://www.lua.org/manual/5.2/manual.html#6.5 Table section of the lua documentation] is probably handy here.
  
 
== Public Methods ==
 
== Public Methods ==
  
=== static foreach ===
+
=== static unpack ===
 +
 
 +
=== static pack ===
 +
 
 +
=== static sort ===
 +
 
 +
=== static insert ===
 +
 
 +
=== static remove ===
 +
 
 +
=== static concat ===
  
=== static keys ===
+
== See Also ==
 +
There are a few table iterators in the [[Global LUA Functions|global]] namespace (ipairs, pairs, and next)
 +
[[Category:LUA Class Reference]]

Latest revision as of 05:37, 13 July 2023

NOTE: This class is lowercase, ie: 'table'

The Table section of the lua documentation is probably handy here.

Public Methods

static unpack

static pack

static sort

static insert

static remove

static concat

See Also

There are a few table iterators in the global namespace (ipairs, pairs, and next)