On 12/13/10, Steven Schveighoffer <[email protected]> wrote:
> does this work?
>
Yes, ty. But I think there's a typo in std.algorithm.remove:
Range remove(alias pred, SwapStrategy s = SwapStrategy.stable,
Range)(Range range);
Reduces the length of the bidirectional range range by only
keeping elements that satisfy pred.
This should probably be "by only keeping elements that *do not*
satisfy pred.", right?
Here's a short example where I just shorten the length of an array:
http://pastebin.com/gL6EYJzd