From: Gordon Thiesfeld Date: 2007-07-31T07:10:05+09:00 Subject: Re: array.include? On Jul 30, 11:17 am, Jeffrey Bowen wrote: > if @status_array.include? @status_number > else > @status_array << @status_number > end How about not checking at all? Just put them all in there and then use @status_array.uniq! when necessary? I'm not advocating this. Just curious what people think.