template<typename T>
Queue class
Contents
Constructors, destructors, conversion operators
Public functions
Function documentation
template<typename T>
void bpf:: collection:: Queue<T>:: Clear()
Clears this queue
template<typename T>
void bpf:: collection:: Queue<T>:: Push(const T& element)
Parameters | |
---|---|
element | the element to push |
Pushes an element on the queue
template<typename T>
void bpf:: collection:: Queue<T>:: Push(T&& element)
Parameters | |
---|---|
element | the element to push |
Pushes an element on the queue
template<typename T>
T bpf:: collection:: Queue<T>:: Pop()
Returns | the extracted/removed item |
---|---|
Exceptions | |
IndexException | if the queue is empty |
Extracts the top of the queue
template<typename T>
T& bpf:: collection:: Queue<T>:: Top()
Returns | mutable item |
---|---|
Exceptions | |
IndexException | if the queue is empty |
Returns the top of the queue
template<typename T>
const T& bpf:: collection:: Queue<T>:: Top() const
Returns | immutable item |
---|---|
Exceptions | |
IndexException | if the queue is empty |
Returns the top of the queue