Difference between revisions of "Rawset"
From OpenEUO
(Created page with " rawset (table, index, value) 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...") |
|||
Line 3: | Line 3: | ||
This function returns table. | This function returns table. | ||
+ | |||
+ | [[Getmetatable]] | ||
+ | |||
+ | [[Rawequal]] | ||
+ | |||
+ | [[Rawget]] | ||
+ | |||
+ | [[Setmetatable]] | ||
[http://www.lua.org/manual/5.1/manual.html#2.8 Lua Manual - Metatables] | [http://www.lua.org/manual/5.1/manual.html#2.8 Lua Manual - Metatables] |
Latest revision as of 10:16, 9 October 2010
rawset (table, index, value)
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.