Inserts an array of elements to given array at the specified index.
Modifies the original array (Thanks BaerMitUmlaut)
_array | Array to insert at ARRAY |
_index | Index of the insertion <NUMBER> |
_elements | Elements to be inserted ARRAY |
The modified array ARRAY
_arr = ["a", "b", "e"]; [_arr, 2, ["c", "d"]] call CBA_fnc_insert; // _arr is now ["a", "b", "c", "d", "e"]
654wak654