isEqualTo: Difference between revisions
Jump to navigation
Jump to search
Groups:
Variables
Lou Montana (talk | contribs) m (Text replacement - "<dd class="note">([^}]*)<code>([^<]*)<\/code>" to "<dd class="note">$1<sqf>$2</sqf>") |
Lou Montana (talk | contribs) m (Text replacement - "<code>([^\[]+)<\/code>" to "<sqf>$1</sqf>") |
||
Line 14: | Line 14: | ||
* It can compare [[Namespace]]s (''As of Arma 3 v1.47'') | * It can compare [[Namespace]]s (''As of Arma 3 v1.47'') | ||
* It is slightly faster than [[==]], especially when comparing [[String]]s {{Feature | Informative | A compiled code is not equal to the same compiled code made final: | * It is slightly faster than [[==]], especially when comparing [[String]]s {{Feature | Informative | A compiled code is not equal to the same compiled code made final: | ||
< | <sqf>_a = compile "123"; _b = compileFinal "123"; _a isEqualTo _b; // false</sqf> }} | ||
{{Feature | Warning | When comparing [[Array]]s, if an array contains [[nil]] element, the comparison will return [[false]]. For example:<br> | {{Feature | Warning | When comparing [[Array]]s, if an array contains [[nil]] element, the comparison will return [[false]]. For example:<br> | ||
<code>private _array1 = [1,nil,2]; | <code>private _array1 = [1,nil,2]; |
Revision as of 20:08, 13 May 2022
Description
- Description:
- Performs strict comparison between var1 and var2 and returns true if equal, otherwise false. Strict means that it would check that both arguments are of the same data type and then compare the values.
Some differences between isEqualTo and ==:- It performs case sensitive comparison on Strings
- It doesn't throw error when comparing different types, i.e. ("eleven" isEqualTo 11)
- It can compare Arrays, Scripts and Booleans (alive player isEqualTo true)
- It can compare non-existent game objects (grpNull isEqualTo grpNull)
- It can compare Namespaces (As of Arma 3 v1.47)
- It is slightly faster than ==, especially when comparing Strings
Syntax
Examples
- Example 1:
- Example 2:
Additional Information
- See also:
- isNotEqualTo isEqualTypeAll isEqualTypeAny isEqualType isEqualTypeParams isEqualTypeArray a == b Operators
Notes
-
Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note
- Posted on December 3, 2014 - 13:11 (UTC)
- Tajin
- Simply put, "isEqualTo" is a binary comparison. Therefor it is very fast but only accepts 100% identical matches. In some other languages this is known as "===" instead of "==".
- Posted on November 3, 2016 - 02:39 (UTC)
- Dedmen
- When comparing with nil result is Nothing. Returns Nothing instead of expected false Will print [bool]