ACE3/addons/common/functions/fnc_map.sqf

30 lines
584 B
Plaintext
Raw Normal View History

/*
* Author: KoffeinFlummi, commy2
* Applies given code to every element in an array, LIKE SOMETHING SQF SHOULD HAVE BY DEFAULT. <- :kappa:
*
* Arguments:
* 0: Array to be thingied.
* 1: Code to be applied to every element.
*
* Return Value:
* Final array
*
2015-09-20 14:56:35 +00:00
* Public: Yes
*
* Deprecated
*/
2015-01-13 19:56:02 +00:00
#include "script_component.hpp"
params [["_array", [], [[]]], ["_code", {}, [{}]]];
2016-02-06 10:58:31 +00:00
ACE_DEPRECATED("ace_common_fnc_map","3.7.0","apply");
2015-09-18 19:46:21 +00:00
// copy array to not alter the original one
_array = + _array;
{
2015-05-14 18:06:06 +00:00
_array set [_forEachIndex, _x call _code];
} forEach _array;
2015-09-20 14:40:49 +00:00
_array