Farhad (Farhad Eyvazli)
- Login: Farhad
- Registered on: 12/27/2019
- Last sign in: 10/04/2020
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
12/27/2019
-
04:36 PM Ruby Bug #16457: Invisible keys on hash when defining hash with Hash.new({})
- So does it mean when main hash lost his references, this new allocated hash will also be collected by GC? I haven't get a chance to test it (also don't know how to do proper test :) )
-
11:36 AM Ruby Bug #16457 (Rejected): Invisible keys on hash when defining hash with Hash.new({})
- When using ``` Hash.new()``` to initialize a hash, we all know for undefined it will return specific value which sent as a parameter to the ```Hash.new``
But when doing something like that keys get invisible
```ruby
my_hash: Hash.ne...