Difference between revisions of "Rawset"
From GiderosMobile
| Line 1: | Line 1: | ||
| __NOTOC__ | __NOTOC__ | ||
| − | '''Available since:''' Gideros 2011.6<br/> | + | '''<translate>Available since</translate>:''' Gideros 2011.6<br/> | 
| − | === Description === | + | === <translate>Description</translate> === | 
| <translate>Sets the real value of table[index] to value, without invoking any metamethod. table must be a table, index any value different from nil, and value any Lua value.   | <translate>Sets the real value of table[index] to value, without invoking any metamethod. table must be a table, index any value different from nil, and value any Lua value.   | ||
| Line 9: | Line 9: | ||
| (table) = rawset(table,key,value) | (table) = rawset(table,key,value) | ||
| </source> | </source> | ||
| − | === Parameters === | + | === <translate>Parameters</translate> === | 
| '''table''': (table) <translate>table to set the value to</translate> <br/> | '''table''': (table) <translate>table to set the value to</translate> <br/> | ||
| '''key''': (any) <translate>key of the table to set the value to</translate> <br/> | '''key''': (any) <translate>key of the table to set the value to</translate> <br/> | ||
| '''value''': (any) <translate>value to store in the table</translate> <br/> | '''value''': (any) <translate>value to store in the table</translate> <br/> | ||
| − | === Return values === | + | === <translate>Return values</translate> === | 
| − | '''Returns''' (table) <translate>provided table</translate><br/> | + | '''<translate>Returns</translate>''' (table) <translate>provided table</translate><br/> | 
Revision as of 07:29, 24 August 2018
Available since: Gideros 2011.6
Description
Sets the real value of table[index] to value, without invoking any metamethod. table must be a table, index any value different from nil, and value any Lua value.
This function returns table.
(table) = rawset(table,key,value)
Parameters
table: (table) table to set the value to 
key: (any) key of the table to set the value to 
value: (any) value to store in the table 
Return values
Returns (table) provided table
