apply: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\| *((\[\[.*\]\],? ?)+) * \}\}" to "|seealso= $1 }}")
m (Text replacement - "_x" to "_x")
Line 7: Line 7:
|gr1= Arrays
|gr1= Arrays


| Applies given code to each element of the array and returns resulting array. The value of the current array element, to which the code will be applied, is stored in variable [[_x]].
| Applies given code to each element of the array and returns resulting array. The value of the current array element, to which the code will be applied, is stored in variable [[Magic Variables#x|_x]].


| array '''apply''' code
| array '''apply''' code
Line 13: Line 13:
|p1= array: [[Array]] - array of [[Anything]]
|p1= array: [[Array]] - array of [[Anything]]


|p2= code: [[Code]] - code to be executed on each element of the array. Current element value is stored in variable [[_x]]
|p2= code: [[Code]] - code to be executed on each element of the array. Current element value is stored in variable [[Magic Variables#x|_x]]


| [[Array]] - resulting array
| [[Array]] - resulting array

Revision as of 13:58, 25 February 2021

Hover & click on the images for description

Description

Description:
Description needed
Groups:
Arrays

Syntax

Syntax:
Syntax needed
Parameters:
array: Array - array of Anything
code: Code - code to be executed on each element of the array. Current element value is stored in variable _x
Return Value:
Return value needed

Examples

Example 1:
_arr = [1,2,3,4,5,6,7,8,9,0] apply {[1,0] select (_x % 2 == 0)}; //[1,0,1,0,1,0,1,0,1,0]
Example 2:
_arr = [1,2,3,4,5,6,7,8,9,0] apply {_x ^ _x}; //[1,4,27,256,3125,46656,823543,16777216,387420480,1]
Example 3:
_arr1 = []; _arr1 resize 20; _arr2 = _arr1 apply {0}; //[0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0]
Example 4:
[0,1,2,3,4] apply {str _x}; // Returns ["0","1","2","3","4"]

Additional Information

See also:
setresizepushBackpushBackUniqueselectreversecountfindinforEachdeleteAtdeleteRangeappendsortarrayIntersect

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
Posted on February 18, 2016 - 11:03 (UTC)
Fusselwurm
(to anyone else wondering, I took a minute to get it): This is Array.map() in JavaScript
Posted on February 11, 2018 - 23:02 (UTC)
Lou Montana
if performance really is an issue, apply seems to be (very) slightly faster than forEach (by more or less one percent, 0.7-1.5% in my tests to be precise).