# File lib/facets/more/pqueue.rb, line 210
  def pop_array(n=@size)
    ary = []
    n.times{ary.push(pop)}
    return ary
  end