EDIT: look here: http://feedback.arma3.com/view.php?id=14944#c57829
At the moment resize works only from the beginning of an array
a = [1,2,3,4,5];
a resize 3;
results in [1,2,3]
With proposed negative offset, array should be reverse resized:
a = [1,2,3,4,5]
a resize -3;
will result in [3,4,5]
This little addition hopefully will patch some of the inadequacies with SQF language.