Array#uniq has this behaviour in Ruby 1.9

c = [ "a:def", "a:xyz", "b:abc", "b:xyz", "c:jkl" ]
c.uniq {|s| s[/^\w+/]}  #=> [ "a:def", "b:abc", "c:jkl" ]

It can take a block and give unique value with respect to what we give. But, this wont work in Ruby 1.8. How can I create this functionality in ruby 1.8?

link|improve this question

Why do yo want to use Ruby 1.8? It is going to become obsolete. – sawa Dec 28 '11 at 8:54
@sawa: Perhaps he already has a project using 1.8 and no budget or time to upgrade right now. – mu is too short Dec 28 '11 at 8:57
Or is on a machine where he is not allowed to upgrade it. – the Tin Man Dec 28 '11 at 8:59
feedback

2 Answers

up vote 4 down vote accepted

Install Marc-André LaFortune's backports gem:

https://github.com/marcandre/backports

That has the block versions of 1.9.2's Array#uniq and Array#uniq!. Or if you don't want or need the whole thing, the parts are pretty well isolated so you can pull out just the pieces you need:

https://github.com/marcandre/backports/blob/master/lib/backports/1.9.2/array.rb#L99

link|improve this answer
aahh..this was mentioned by marc himself in one of my other questions..how did I forget that...thanks – rubyprince Dec 28 '11 at 9:46
feedback

It's easy to implement something like:

class Array
    def uniq
        ret, keys = [], []
        each do |x|
            key = block_given? ? yield(x) : x
            unless keys.include? key
                ret << x
                keys << key
            end
        end
        ret
    end
end
link|improve this answer
1  
1  
Thank you it works great :) – Emanuel May 26 at 2:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.