tjdgnsqn133 (Kim Seonghoon)
- Login: tjdgnsqn133
- Registered on: 12/10/2020
- Last sign in: 12/10/2020
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
12/10/2020
-
06:14 AM Ruby Feature #17384: shorthand of Hash#merge
- Thanks,
I didn't know the issue has been argued.
From now on, I search issues first before write. -
04:51 AM Ruby Feature #17384: shorthand of Hash#merge
- ``` ruby
a = {k: 1}
b = {j: 2}
c = a.merge(b)
d = a + b # same as c
```
-
04:49 AM Ruby Feature #17384 (Feedback): shorthand of Hash#merge
- Hi, all.
When I used Hash#merge, I thought it is uncomfortable.
``` ruby
a = {k: 1}
b = {j: 2}
c = a.merge(b)
```
If hash provides + like array, so useful.