Actions
Feature #17744
closedAccumulate `Enumerable#tally` results
Status:
Closed
Assignee:
-
Target version:
-
Description
A feature request at DevelopersMeeting20200317Japan:
ko1: want to accumulate
Enumerable#tally
resultsh = {} [:a,:b,:c].tally(h) [:a,:b,:d].tally(h) p h #=> {:a=>2, :b=>2, :c=>1, :d=>1}
matz: looks good. please create a proposal
Updated by marcandre (Marc-Andre Lafortune) over 3 years ago
Is there an issue using merge
?
I retract my question, this change sounds simple enough
Updated by matz (Yukihiro Matsumoto) over 3 years ago
Go ahead.
Matz.
Updated by nobu (Nobuyoshi Nakada) over 3 years ago
- Status changed from Open to Closed
Applied in changeset git|9143d21b1bf2f16b1e847d569a588510726d8860.
Enumerable#tally with the resulting hash [Feature #17744]
Actions
Like0
Like0Like0Like0