On Wednesday, 30 November 2022 at 03:04:47 UTC, Basile B. wrote:
Essentially slices are only useful to be consumed locally, typically

```d
while mySlice.length do
{
   slice = slice[1..$];
}
```

sorry I cant force push, it was obviously meant to be written as

```d
while mySlice.length do
{
   mySlice = mySlice[1..$];
}
```


Reply via email to