Rawset

From GiderosMobile
Revision as of 05:27, 11 February 2020 by MoKaLux (talk | contribs)


Available since: Gideros 2011.6
Class: (global)

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