Difference between revisions of "Rawequal"
From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2011.6<br/> === Description === Checks whether v1 is equal to v2, without invoking any metamethod. Returns a boolean. <source lang="lu...") |
m (Text replacement - "</source>" to "</syntaxhighlight>") |
||
(9 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
__NOTOC__ | __NOTOC__ | ||
'''Available since:''' Gideros 2011.6<br/> | '''Available since:''' Gideros 2011.6<br/> | ||
+ | '''Class:''' [[(global)]]<br/> | ||
+ | |||
=== Description === | === Description === | ||
Checks whether v1 is equal to v2, without invoking any metamethod. Returns a boolean. | Checks whether v1 is equal to v2, without invoking any metamethod. Returns a boolean. | ||
− | < | + | <syntaxhighlight lang="lua"> |
− | (bool) | + | (bool) = rawequal(v1,v2) |
− | </ | + | </syntaxhighlight> |
− | '''v1 | + | |
− | '''v2 | + | === Parameters === |
+ | '''v1''': (any) first value to compare<br/> | ||
+ | '''v2''': (any) second value to compare<br/> | ||
+ | |||
+ | === Return values === | ||
'''Returns''' (bool) true if values are equal, or false if different<br/> | '''Returns''' (bool) true if values are equal, or false if different<br/> | ||
+ | |||
+ | {{(global)}} |
Latest revision as of 14:32, 13 July 2023
Available since: Gideros 2011.6
Class: (global)
Description
Checks whether v1 is equal to v2, without invoking any metamethod. Returns a boolean.
(bool) = rawequal(v1,v2)
Parameters
v1: (any) first value to compare
v2: (any) second value to compare
Return values
Returns (bool) true if values are equal, or false if different