soudai_s (Soudai Sasada)
- Login: soudai_s
- Registered on: 04/09/2021
- Last sign in: 05/22/2023
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
04/09/2021
-
11:03 AM Ruby Bug #17789: Incompatible behavior of Enumarator::Lazy#with_index
- It means it's no longer compatible with 2.6 or under, isn't it?
Thank you for quick reply! -
08:46 AM Ruby Bug #17789 (Closed): Incompatible behavior of Enumarator::Lazy#with_index
- this method ignores the block passed to it, but this behavior looks different from the Enumerator (super class).
```
$ ruby -e '%w(a).lazy.with_index { |s, i| puts "#{s} => #{i}" }'
a => 0 # Expected, but doesn't actually print anyt...