Method: Packet::TimerStore#each
- Defined in:
- lib/packet/timer_store.rb
#each ⇒ Object
52 53 54 55 56 57 58 59 60 |
# File 'lib/packet/timer_store.rb', line 52 def each @order.each_with_index do |x,i| @container[x].each do |timer| yield timer end # @container.delete(x) if @container[x].empty? # @order.delete_at(i) end end |