Difference between revisions of "Table.create"
From GiderosMobile
| m (Text replacement - "<source" to "<syntaxhighlight") | m (Text replacement - "</source>" to "</syntaxhighlight>") | ||
| Line 7: | Line 7: | ||
| <syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
| (table) = table.create(count,value) | (table) = table.create(count,value) | ||
| − | </ | + | </syntaxhighlight> | 
| === Parameters === | === Parameters === | ||
Latest revision as of 14:33, 13 July 2023
Available since: Gideros 2022.3
Class: table
Description
Creates a table with the array portion allocated to the given number of elements, optionally filled with the given value.
(table) = table.create(count,value)
Parameters
count: (number) number of elements
value: (any) value to fill the table with optional
Return values
Returns (table) the newly created table
