2015-01-11 16:42:31 +00:00
|
|
|
/*
|
|
|
|
* Author: KoffeinFlummi, commy2
|
|
|
|
* Applies given code to every element in an array, LIKE SOMETHING SQF SHOULD HAVE BY DEFAULT.
|
|
|
|
*
|
|
|
|
* Arguments:
|
|
|
|
* 0: Array to be thingied.
|
|
|
|
* 1: Code to be applied to every element.
|
|
|
|
*
|
|
|
|
* Return Value:
|
|
|
|
* Final array
|
|
|
|
*
|
|
|
|
* Usage:
|
2015-01-11 18:20:14 +00:00
|
|
|
* [["2", "gobblecock", "25"], {parseNumber _this}] call FUNC(map) ==> [2, 0, 25]
|
2015-09-18 19:46:21 +00:00
|
|
|
*
|
|
|
|
* Public: No
|
2015-01-11 16:42:31 +00:00
|
|
|
*/
|
2015-01-13 19:56:02 +00:00
|
|
|
#include "script_component.hpp"
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-09-18 19:46:21 +00:00
|
|
|
params ["_array", "_code"];
|
2015-01-11 16:42:31 +00:00
|
|
|
|
2015-09-18 19:46:21 +00:00
|
|
|
// copy array to not alter the original one
|
|
|
|
_array = + _array;
|
2015-01-11 16:42:31 +00:00
|
|
|
|
|
|
|
{
|
2015-05-14 18:06:06 +00:00
|
|
|
_array set [_forEachIndex, _x call _code];
|
2015-01-11 16:42:31 +00:00
|
|
|
} forEach _array;
|
|
|
|
_array
|