nitoyon (Kenichi Saita)
- Login: nitoyon
- Registered on: 08/25/2014
- Last sign in: 09/25/2014
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
09/25/2014
-
03:44 PM Ruby Bug #10167: Prime#include?(mod) hangs up
- Review my patch, please!
08/29/2014
-
05:11 PM Ruby Bug #10167: Prime#include?(mod) hangs up
- It's difficult to delete `Prime.inlude?` method because this method is included by `include Enumerable`.
So, I overrided `Prime.include?` and `Prime.instance.include?`. Please review my patch.
08/25/2014
-
02:57 PM Ruby Bug #10167 (Closed): Prime#include?(mod) hangs up
- We expect `Prime` class implements `Module#include?(mod)`. But `Prime#include?(mod)` hangs up, because it is overwritten by `Enumerable#include?(obj)` and tries to search `mod` linearly from infinite sequence of prime numbers.
**Re...