class SandthornSequelProjection::CircularQueue
Public Instance Methods
pop()
click to toggle source
CircularQueue
¶ ↑
Automatically pushes popped elements to the back of the queue In other words, can never be emptied by use of pop
Calls superclass method
# File lib/sandthorn_sequel_projection/runner.rb, line 55 def pop super.tap do |el| self << el end end