select: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (+ Examples)
mNo edit summary
Line 7: Line 7:
____________________________________________________________________________________________
____________________________________________________________________________________________


| If index is false, this selects the first element of the array, if it is true, it selects the second index. |= Description
| Selects index element of the array.
 
Index 0 denotes the first element, 1 the second, etc. |= Description
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 14: Line 16:
|p1= array: [[Array]] |= Parameter 1
|p1= array: [[Array]] |= Parameter 1


|p2= index: [[Boolean]] |= Parameter 2
|p2= index: [[Number]] |= Parameter 2


| [[Any Value]] |= Return value
| [[Any Value]] |= Return value

Revision as of 03:19, 7 October 2006

Hover & click on the images for description

Description

Description:
Selects index element of the array. Index 0 denotes the first element, 1 the second, etc.
Groups:
Uncategorised

Syntax

Syntax:
array select index
Parameters:
array: Array
index: Number
Return Value:
Any Value

Examples

Example 1:
[1,2,3,4] select true - result is 2
Example 2:
[1,2,3,4] select 3 - result is 4
Example 3:
position player select 2 - result is Z coordinate of player position (see Position3D for more details)

Additional Information

See also:
See also needed

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

Notes

Bottom Section