On 4/1/23 2:25 PM, Paul wrote:
Thanks in advance for any assistance.

As the subject line suggests can I do something like? :
```d
foreach (i; taskPool.parallel(0..2_000_000))
```
Obviously this exact syntax doesn't work but I think it expresses the gist of my challenge.


```d
import std.range;

foreach(; iota(0, 2_000_000).parallel)
```

-Steve

Reply via email to