asilano (Chris Howlett)
- Login: asilano
- Registered on: 11/26/2020
- Last sign in: 11/26/2020
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
11/27/2020
-
01:38 PM Ruby Feature #17347: Enumerator::Chain of Enumerator::Lazy should be lazy
- Is it a duplicate? I can see it's similar, but I'm not entirely sure fixing #17216 will fix this. Willing to be wrong, though.
11/26/2020
-
04:12 PM Ruby Feature #17347 (Closed): Enumerator::Chain of Enumerator::Lazy should be lazy
- ruby 2.6.6p146 (2020-03-31 revision 67876) [x86_64-linux]
Consider the following script:
``` ruby
a = [1,2,3].lazy
p a
b = [4,5,6].lazy
p b
c = a + b
p c
```
This gives the output:
```
#<Enumerator::Lazy: [1, 2, 3]>
#<En...