isEqualType: Difference between revisions
Jump to navigation
Jump to search
Lou Montana (talk | contribs) m (Text replacement - "\[\[Category:[ _]?Scripting[ _]Commands[ _]Arma[ _]3(\|.*)\]\]" to "{{GameCategory|arma3|Scripting Commands}}") |
Lou Montana (talk | contribs) m (Some wiki formatting) |
||
(29 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
{{ | {{RV|type=command | ||
| arma3 | | |game1= arma3 | ||
|version1= 1.54 | |||
| | |gr1= Variables | ||
| | |descr= Compares two values' types. A much faster alternative to <sqf inline>typeName a == typeName b</sqf>. | ||
| | |s1= val1 [[isEqualType]] val2 | ||
| val1 | |p1= val1: [[Anything]] | ||
|p2= val2: [[Anything]] | |||
|p2= val2: [[Anything]] | |||
| [[Boolean]] | |r1= [[Boolean]] | ||
|[ | |x1= <sqf> | ||
private _var = [1,2,3]; | |||
_var isEqualType 0; // false | |||
_var isEqualType []; // true | |||
</sqf> | |||
|seealso= [[isEqualTypeAll]] [[isEqualTypeArray]] [[isEqualTypeAny]] [[isEqualTypeParams]] [[param]] [[params]] [[isEqualTo]] [[typeName]] | |||
}} | }} | ||
Latest revision as of 15:49, 1 July 2022
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:
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