[ruby-core:94272] [Ruby master Misc#16096] each in each (multiple uses 'each')
From:
FreeKMan@...
Date:
2019-08-11 09:33:10 UTC
List:
ruby-core #94272
Issue #16096 has been updated by D1mon (Dim F).
this method is not suitable since the 3rd search (find_elements) is also used.
Are you saying this is a bug? you can do issue?
----------------------------------------
Misc #16096: each in each (multiple uses 'each')
https://bugs.ruby-lang.org/issues/16096#change-80595
* Author: D1mon (Dim F)
* Status: Rejected
* 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>