Difference between revisions of "Rawget"
From OpenEUO
(Created page with " rawget (table, index) Gets the real value of table[index], without invoking any metamethod. table must be a table; index may be any value. [http://www.lua.org/manual/5.1/manua...") |
|||
Line 1: | Line 1: | ||
rawget (table, index) | rawget (table, index) | ||
Gets the real value of table[index], without invoking any metamethod. table must be a table; index may be any value. | Gets the real value of table[index], without invoking any metamethod. table must be a table; index may be any value. | ||
+ | |||
+ | [[Getmetatable]] | ||
+ | |||
+ | [[Rawequal]] | ||
+ | |||
+ | [[Rawset]] | ||
+ | |||
+ | [[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
rawget (table, index)
Gets the real value of table[index], without invoking any metamethod. table must be a table; index may be any value.