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

Dennis <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |[email protected]

--- Comment #1 from Dennis <[email protected]> ---
Adding magic rules to the + operator in a specific context is a bad idea. More
feasable would be to extend the Range element as a whole, for example like in
odin:

```
for i in 0..=9 {}
for i in 0..<10 {}
```

https://odin-lang.org/docs/overview/#range-based-for-loop

--

Reply via email to