Module: Enumerable
- Defined in:
- lib/mir_utility.rb
Instance Method Summary collapse
Instance Method Details
#to_histogram ⇒ Object
636 637 638 |
# File 'lib/mir_utility.rb', line 636 def to_histogram inject(Hash.new(0)) { |h,x| h[x] += 1; h } end |