I notice that std.algorithm and std.algorithm.mutate return a new dynamic array.
Are there any libraries out there that do modifications in place?

For example, for dynamic array items

```
int[] items = [ 10, 20, 30, 40 ];

// Library call to do in place mutations of items dynamic array, without any new allocations
items.remove(1);

assert(items == [10, 30, 40];
assert(items.length == 3);
```

Reply via email to