roxen.lists.pike.general

Subject Author Date
RE: Arrays: multi-pop? Arjan van Staalduijnen <Arjan[dot]van[dot]Staalduijnen[at]rtl[dot]nl> 09-09-2009
Correct, doing the
    array updates = update_values[..5000];
    update_values = update_values[5001..];
is quite a bit faster than what I had, and what I had was not required.

The question I intended is about the fact that I have to copy the data for
update_values, while all I would want to do is move a pointer.


Arjan