Class: LastQueue

Inherits:
Queue
  • Object
show all
Defined in:
lib/Watcher.rb

Instance Method Summary collapse

Instance Method Details

#poopObject



53
54
55
56
57
58
# File 'lib/Watcher.rb', line 53

def poop
  while !empty?
    ret = pop
  end
  ret.nil? ? pop : ret
end