in Array: Difference between revisions

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

Revision as of 21:01, 1 June 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