Ok, here they are as I added them to lib.arrays.h should some mysterious future modder need it :P
// push new item at the end of array, no return value
procedure array_push_no_return(variable array, variable item) begin
variable n;
n := len_array(array);
resize_array(array, n + 1)...