Search Results

1
vote

Uniq by object attribute in Ruby

I like jmah's use of a Hash to enforce uniqueness. Here's a couple more ways to skin that cat: objs.inject({}) {|h,e| h[e.attr]=e; h}.values That's a nice 1-liner …