https://issues.dlang.org/show_bug.cgi?id=24081

--- Comment #1 from Basile-z <[email protected]> ---
I dont fully agree, here is why:

```
template indexOf(T)
if (isRandomAccessRange!T)
{
    alias indexOf = countUntil;
}
```

as you can see `indexOf` denotes _indexing_ capabilitites, but countUntil works
for all forward range.

--

Reply via email to