DEBSOURCES
Skip Quicknav
sources / ruby-acts-as-taggable-on / 11.0.0-2 / spec / support / array.rb
123456789
unless [].respond_to?(:freq) class Array def freq k=Hash.new(0) each { |e| k[e]+=1 } k end end end