Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there any Ruby equivalent for Python's builtin zip function? If not, what is a concise way of doing the same thing?

A bit of context: this came up when I was trying to find a clean way of doing a check involving two arrays. If I had zip, I could have written something like:

zip(a, b).all? {|pair| pair[0] === pair[1]}

I'd also accept a clean way of doing this without anything resembling zip (where "clean" means "without an explicit loop").

share|improve this question

3 Answers

up vote 14 down vote accepted

Ruby has a zip function:

[1,2].zip([3,4]) => [[1,3],[2,4]]

so your code example is actually:

a.zip(b).all? {|pair| pair[0] === pair[1]}

or perhaps more succinctly:

a.zip(b).all? {|a,b| a === b }
share|improve this answer
Enumerable#zip! There it is. Thanks so much. – Eric Naeseth Nov 5 '08 at 21:30
The answer is that in Python there is chaos of functions and methods. Noone knows, zip must be a function or method, until find it somewhere in the awfuly structurized Python manuals. In Ruby all are methods, and this is WONDERFULL. – Nakilon Dec 5 '10 at 0:43

Could you not do:

a.eql?(b)

Edited to add an example:

a = %w[a b c]
b = %w[1 2 3]
c = ['a', 'b', 'c']

a.eql?(b) # => false
a.eql?(c) # => true
a.eql?(c.reverse) # => false
share|improve this answer
I'm not sure. I need to use the === equivalence operator to compare elements, not ==. – Eric Naeseth Nov 5 '08 at 21:32
Have you tried it? – jonnii Nov 5 '08 at 21:41
I added some example code to help prove your point. – the Tin Man Dec 4 '10 at 23:58

This is from the ruby spec:

it "returns true if other has the same length and each pair of corresponding elements are eql" do
    a = [1, 2, 3, 4]
    b = [1, 2, 3, 4]
    a.should eql(b)
    [].should eql([])
end

So you should it should work for the example you mentioned.

If you're not using integers, but custom objects I think you need to override eql?.

The spec for this method is here:

http://github.com/rubyspec/rubyspec/tree/master/1.8/core/array/eql_spec.rb

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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