Reject array elements for which the block returns true
_array | Input Array [Array] |
_block | Block [Code] |
New array with elements removed for which the block returns true [Array]
_result = [[1,2,3], {_this in [2,3]}] call CBA_fnc_reject; // _result => [1]
MuzzleFlash