Difference between revisions of "Rawequal"
From OpenEUO
(Created page with " rawequal (v1, v2) Checks whether v1 is equal to v2, without invoking any metamethod. Returns a boolean. [http://www.lua.org/manual/5.1/manual.html#2.8 Lua Manual - Metatables]") |
|||
Line 1: | Line 1: | ||
rawequal (v1, v2) | rawequal (v1, v2) | ||
− | Checks whether v1 is equal to v2, without invoking any | + | Checks whether v1 is equal to v2, without invoking any associated metamethods. Returns a boolean. |
+ | |||
+ | [[Getmetatable]] | ||
+ | |||
+ | [[Rawget]] | ||
+ | |||
+ | [[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:14, 9 October 2010
rawequal (v1, v2)
Checks whether v1 is equal to v2, without invoking any associated metamethods. Returns a boolean.