def include?(obj)
found = false
@total.times do |i|
next if found
if @tuple.at(@start + i) == obj then
found = true
end
end
found
end
|
def include?(obj)
found = false
@total.times do |i|
next if found
if @tuple.at(@start + i) == obj then
found = true
end
end
found
end
|