const_reference top() const; |
Returns reference to the top element in the priority queue. This element will be removed on a call to pop()
. If default comparison function is used, the returned element is also the greatest among the elements in the queue.
(none).
Reference to the top element as if obtained by a call to c.front()
.
Constant.
removes the top element (public member function) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
http://en.cppreference.com/w/cpp/container/priority_queue/top