class Concurrent::Collection::RubyNonConcurrentPriorityQueue

def peek

@!macro priority_queue_method_peek
def peek
  empty? ? nil : @queue[1]
end