On Monday, 30 January 2017 at 12:31:33 UTC, albert-j wrote:
>
> OK, got it. Can you do removal without reallocation with
> std.container.array?
>
> Array!int arr;
> foreach (i; 0..10) arr ~= i;
Sorry, sent too early.
arr = arr[].remove!(x=> x > 5); //Doesn't work withouth
calling .Array!int