vote up 0 vote down star

Let's say I have a loop like this:

items.each do |x|
  if FIRST_TIME_AROUND
    # do something
  end
  # do the rest of stuff
end

is there a way in Ruby to write if FIRST_TIME_AROUND? I vaguely recall reading something about this once, but I can't recall.

EDIT: I do know about the (many) standard ways of doing this... I'm after the most elegant solution possible.

flag

3 Answers

vote up 6 vote down check
items.each_with_index do |x, i|
  do_something if i==0
  do_rest
end
link|flag
you can toss that i as the second variable and it's the current number in the loop starting with 0. I typically call it int, but i works just fine. – rpflo Oct 8 at 2:30
vote up 2 vote down

The most elegant way is to do the once-off thing outside the loop if at all possible.

link|flag
vote up 0 vote down

There's an ugly, generic way, not specific to Ruby:

first = true
items.each do |x|
  if first
    first = false
    # do something
  end
  # do the rest of stuff
end

That kind of logic is ugly, verbose, but works in most languages.

link|flag

Your Answer

Get an OpenID
or

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