in Array: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
No edit summary
 
No edit summary
Line 1: Line 1:
back to [[Scripting_Reference#I|COMREF]]
<h2 style="color:#000066">''x '''''in ''array'''''</h2>
<h2 style="color:#000066">''x '''''in ''array'''''</h2>


'''Operand types:'''
'''Operand types:'''


x: [[Any Value]]
'''x:''' [[Any Value]]


array: [[Array]]
'''array:''' [[Array]]


'''Type of returned value:'''
'''Type of returned value:'''
Line 13: Line 16:
'''Description:'''
'''Description:'''


Check if x is equal to any element of array.
Check if '''x''' is equal to any element of '''array'''.
 


'''Example:'''
'''Example:'''


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

Revision as of 20:24, 15 April 2006

back to COMREF

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