in Array: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
mNo edit summary
Line 1: Line 1:
[[Category:Scripting Commands|I]]
[[Category:Scripting Commands|INARRAY]]
[[Category:Scripting Commands OFP 1.97|I]]
[[Category:Scripting Commands OFP 1.97|INARRAY]]
[[Category:Scripting Commands OFP 1.46|I]]
[[Category:Scripting Commands OFP 1.46|INARRAY]]
[[Category:Scripting Commands ArmA|I]]
[[Category:Scripting Commands ArmA|INARRAY]]





Revision as of 15:10, 4 May 2006


x in array


Operand types:

x: Any Value

array: Array

Type of returned value:

Boolean

Description:

Check if x is equal to any element of array.


Example:

_it = 1 in [0, 1, 2] ...... Result is true