Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can I get the next value in an each loop?

(1..5).each do |i|
    @store = i + (next value of i)
end

where the answer would be..

1 + 2 + 2 + 3 + 3 + 4 + 4 + 5 + 5 = 29

And also can I get the next of the next value?

share|improve this question
Why do you expect people to take your question seriously if you have "xD hahahaha" at the end of it? – Andrew Grimm Oct 10 '11 at 1:44

2 Answers

up vote 0 down vote accepted

Like this:

range = 1..5
store = 0

range.each_with_index do |value, i|
  next_value = range.to_a[i+1].nil? ? 0 : range.to_a[i+1]
  store += value + next_value
end    

p store # => 29

There may be better ways, but this works.

You can get the next of the next value like this:

range.to_a[i+2]
share|improve this answer
1  
This code would break if range were changed, such as to 11..15: it'd give 65 when it should give 119. – Andrew Grimm Oct 10 '11 at 1:57
nice! thanks for your quick reply! On second thought, @AndrewGrimm was right. – jovhenni19 Oct 10 '11 at 1:58
@AndrewGrimm, you are right, let me fix it. – Mischa Oct 10 '11 at 2:01
1  
Still wrong, you need i+1, not i. TATFT! – Andrew Grimm Oct 10 '11 at 2:12
1  
Thanks for spotting my mistakes :-) – Mischa Oct 10 '11 at 2:18
show 1 more comment

One approach that wouldn't use indexes is Enumerable#zip:

range = 11..15
store = 0 # This is horrible imperative programming
range.zip(range.to_a[1..-1], range.to_a[2..-1]) do |x, y, z|
  # nil.to_i equals 0
  store += [x, y, z].map(&:to_i).inject(:+)
end
store
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.