I'm using ruby 1.8.5, and the each_slice() method for an array is not working.

My code is something like:

array.each_slice(3) do |name,age,sex|   .....   end

Is there any other way to implement the same functionality in my older version of ruby.

link|improve this question

80% accept rate
@the Tin Man: What was wrong with the ruby-1.8 tag? – Andrew Grimm May 24 '11 at 0:08
feedback

4 Answers

up vote 3 down vote accepted

Bake your own:

module Enumerable
  def each_slice( n )
    res = []
    self.each do |el|
      res << el
      if res.size == n then
        yield res.dup
        res.clear
      end
    end
    yield res.dup unless res.empty?
  end
end
link|improve this answer
awesome.. This is really great.. Thank u so much.. – sundar May 23 '11 at 10:43
feedback

This guy

http://tekhne.wordpress.com/2008/02/01/whence-arrayeach_slice/

figured out you can

require 'enumerator'

and it works

link|improve this answer
feedback

I haven't got 1.8.5, but you can try this

0.step(array.size, 3) do |i|
  name, age, sex = array[i], array[i+1], array[i+2]
  ...
end
link|improve this answer
thank u very much for ur reply.. In The above code, say for eg if the no. of elements is 3, it works fine for one iteration but in the second and third iteration, the name,age,sex returns nil... – sundar May 23 '11 at 10:26
@floor: hey this works 0.step(array.size/3,3) do |i| .. end Thank u very much.. – sundar May 23 '11 at 10:33
feedback

I haven't used it myself, but consider using the backports gem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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