isEqualType: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\{\{GameCategory\|(arma[0123])\|[ _]?New[ _]Scripting[ _]Commands[ _]List\}\}" to "{{GameCategory|$1|New Scripting Commands}}")
m (Some wiki formatting)
 
(28 intermediate revisions by 2 users not shown)
Line 1: Line 1:
{{Command|Comments=
{{RV|type=command
____________________________________________________________________________________________


| arma3 |Game name=
|game1= arma3
|version1= 1.54


|1.54|Game version=
|gr1= Variables


|gr1= Variables |GROUP1=
|descr= Compares two values' types. A much faster alternative to <sqf inline>typeName a == typeName b</sqf>.
____________________________________________________________________________________________


| Compares 2 values by their type. A much faster alternative to [[typeName]] a <nowiki>==</nowiki> [[typeName]] b.
|s1= val1 [[isEqualType]] val2
|DESCRIPTION=
____________________________________________________________________________________________


| val1 '''isEqualType''' val2 |SYNTAX=
|p1= val1: [[Anything]]


|p1= val1: [[Anything]] |PARAMETER1=
|p2= val2: [[Anything]]
|p2= val2: [[Anything]] |PARAMETER2=


| [[Boolean]] |RETURNVALUE=
|r1= [[Boolean]]
____________________________________________________________________________________________
 
|x1= <code>_var = [1,2,3];
_var [[isEqualType]] 0; //false
_var [[isEqualType]] []; //true</code> |EXAMPLE1=
____________________________________________________________________________________________


|[[isEqualTypeAll]], [[isEqualTypeArray]], [[isEqualTypeAny]], [[isEqualTypeParams]], [[param]], [[params]], [[isEqualTo]], [[typeName]]|SEEALSO=
|x1= <sqf>
private _var = [1,2,3];
_var isEqualType 0; // false
_var isEqualType []; // true
</sqf>


|seealso= [[isEqualTypeAll]] [[isEqualTypeArray]] [[isEqualTypeAny]] [[isEqualTypeParams]] [[param]] [[params]] [[isEqualTo]] [[typeName]]
}}
}}
<h3 style="display:none">Notes</h3>
<dl class="command_description">
</dl>
<h3 style="display:none">Bottom Section</h3>
[[Category:Scripting Commands|{{uc:{{PAGENAME}}}}]]
{{GameCategory|arma3|New Scripting Commands}}
{{GameCategory|arma3|Scripting Commands}}

Latest revision as of 16:49, 1 July 2022

Hover & click on the images for description

Description

Description:
Compares two values' types. A much faster alternative to typeName a == typeName b.
Groups:
Variables

Syntax

Syntax:
val1 isEqualType val2
Parameters:
val1: Anything
val2: Anything
Return Value:
Boolean

Examples

Example 1:
private _var = [1,2,3]; _var isEqualType 0; // false _var isEqualType []; // true

Additional Information

See also:
isEqualTypeAll isEqualTypeArray isEqualTypeAny isEqualTypeParams param params isEqualTo typeName

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