DEBSOURCES
Skip Quicknav
sources / ruby-tins / 1.32.1-1 / lib / tins / uniq_by.rb
12345678910
module Tins module UniqBy def uniq_by(&b) b ||= lambda { |x| x } inject({}) { |h, e| h[b[e]] ||= e; h }.values end end end require 'tins/alias'