I always use a counter to check for the first item (i==0) in a loop:
i = 0
my_array.each do |item|
if i==0
# do something with the first item
end
# common stuff
i += 1
end
Is there a more elegant way to do this (perhaps a method)?
|
I always use a counter to check for the first item (
Is there a more elegant way to do this (perhaps a method)? |
|||
| show 2 more comments |
|
You can do this:
Try it on ideone. |
|||
|
|
|
Using If you want to do something specific for the first element only and something general for all elements including the first, you could do:
But if you want to not do the general thing with the first element you could do:
|
|||||||||||||||
|
|
What fits best is depending on the situation. Another option (if you know your array is not empty):
|
|||
|
|
|
Arrays have an "each_with_index" method which is handy for this situation:
|
|||
|
|
|
||||
|
|
|
If you don't need the array afterwards:
|
|||||
|
|
Ruby's
The argument is not strictly necessary for common things like sums and products:
But when you want to do something different on the first iteration, that argument might be useful to you:
|
|||||||||||
|
eachloop with just the common stuff? – Russell Nov 18 '11 at 11:18array.firstorarray[0]) and then runs theeachloop, he will still have to test for the first item if he doesn't want to do the regular thing to the first item also. – Telemachus Nov 18 '11 at 11:22my_array[1..-1].each? – Russell Nov 18 '11 at 11:24