[ruby-core:94255] [Ruby master Misc#16096] each in each (multiple uses 'each')

From: FreeKMan@...
Date: 2019-08-10 21:43:14 UTC
List: ruby-core #94255
Issue #16096 has been reported by D1mon (Dim F).

----------------------------------------
Misc #16096: each in each (multiple uses 'each')
https://bugs.ruby-lang.org/issues/16096

* Author: D1mon (Dim F)
* Status: Open
* Priority: Normal
* Assignee: 
----------------------------------------
``` ruby
obj.each {|a|
    a.some_method1.each {|b|
        ... # comes here (enter)
    }
    a.some_method2.each {|c|
        ... # does not enter here
    }
}

# tried and that way. also does not go
for a in obj
    for b in a.some_method1
        ... # comes here
    end
    for c in a.some_method2
        ... # does not enter here
    end
end
```

help solve the problem. I’ve been suffering for 2 days.




-- 
https://bugs.ruby-lang.org/

Unsubscribe: <mailto:ruby-core-request@ruby-lang.org?subject=unsubscribe>
<http://lists.ruby-lang.org/cgi-bin/mailman/options/ruby-core>

In This Thread

Prev Next