class StatelyDB::Transaction::Queue

def each

Returns:
  • (void) -

Other tags:
    Yield: - Gives each element in the queue to the block.
def each
  loop do
    yield pop
  end
end