vote up 1 vote down star
1

How do I avoid doing this?

if boolean_array[day] && boolean_array[day][slot] && boolean_array[day][slot].zero?
  # boolean_array[day][slot] element exists
end
flag

73% accept rate

4 Answers

vote up 4 vote down check

Basically, you want an andand method. You can then do if boolean_array[day].andand[slot].andand.zero?.

Raganwald has one popular implementation.

link|flag
Looks like the answer. Mind waiting to see if anybody else has some other suggestion? – Alexandre Nov 4 at 23:33
vote up 0 vote down

if possible, initialize the days and that way you can do the check for boolean_array[day][slot].nil?

link|flag
vote up 1 vote down

One alternative is to use an inline rescue:

boolean_array[day][slot].zero? rescue nil
link|flag
This is how I do it, too. – glenn mcdonald Nov 5 at 2:24
vote up 1 vote down

I like Chuck's andand. I suppose you could also use the low-priority and to do it in plain Ruby, at least there would be no parens:

>> day = slot = 1; boolean_array = [[], [1,2]]

>> if t = boolean_array[day] and t = t[slot] and t = t.class
>>   puts t
>> end
Fixnum
link|flag

Your Answer

Get an OpenID
or

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