isNotEqualRef: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Some wiki formatting)
m (Text replacement - "|branch= dev " to "")
 
Line 4: Line 4:
|version1= 2.12
|version1= 2.12


|branch= dev


|gr1= Variables
|gr1= Variables

Latest revision as of 19:30, 10 March 2023

Hover & click on the images for description

Description

Description:
Compares two values by reference, returns true if not equal.
Groups:
Variables

Syntax

Syntax:
val1 isNotEqualRef val2
Parameters:
val1: Anything
val2: Anything
Return Value:
Boolean - true if not the same reference

Examples

Example 1:
_arr1 = [1,[2,[3]]]; _arr2 = _arr1; _arr1 isEqualTo _arr2; // true _arr1 isNotEqualRef _arr2; // false _arr2 = +_arr1; // array copy _arr1 isEqualTo _arr2; // true _arr1 isNotEqualRef _arr2; // true

Additional Information

See also:
isEqualRef isNotEqualTo 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