libstdc++
|
#include <stl_queue.h>
Public Types | |
typedef _Sequence::const_reference | const_reference |
typedef _Sequence | container_type |
typedef _Sequence::reference | reference |
typedef _Sequence::size_type | size_type |
typedef _Sequence::value_type | value_type |
Public Member Functions | |
template<typename _Seq = _Sequence, typename _Requires = typename enable_if<is_default_constructible<_Seq>::value>::type> | |
queue () | |
queue (_Sequence &&__c) | |
template<typename _Alloc, typename _Requires = _Uses<_Alloc>> | |
queue (_Sequence &&__c, const _Alloc &__a) | |
template<typename _Alloc, typename _Requires = _Uses<_Alloc>> | |
queue (const _Alloc &__a) | |
queue (const _Sequence &__c) | |
template<typename _Alloc, typename _Requires = _Uses<_Alloc>> | |
queue (const _Sequence &__c, const _Alloc &__a) | |
template<typename _Alloc, typename _Requires = _Uses<_Alloc>> | |
queue (const queue &__q, const _Alloc &__a) | |
template<typename _Alloc, typename _Requires = _Uses<_Alloc>> | |
queue (queue &&__q, const _Alloc &__a) | |
reference | back () |
const_reference | back () const |
template<typename... _Args> | |
decltype(auto) | emplace (_Args &&... __args) |
bool | empty () const |
reference | front () |
const_reference | front () const |
void | pop () |
void | push (const value_type &__x) |
void | push (value_type &&__x) |
size_type | size () const |
void | swap (queue &__q) noexcept(__is_nothrow_swappable< _Sequence >::value) |
Protected Attributes | |
_Sequence | c |
Friends | |
template<typename _Tp1, typename _Seq1> | |
bool | operator< (const queue< _Tp1, _Seq1 > &, const queue< _Tp1, _Seq1 > &) |
template<typename _Tp1, three_way_comparable _Seq1> | |
compare_three_way_result_t< _Seq1 > | operator<=> (const queue< _Tp1, _Seq1 > &, const queue< _Tp1, _Seq1 > &) |
template<typename _Tp1, typename _Seq1> | |
bool | operator== (const queue< _Tp1, _Seq1 > &, const queue< _Tp1, _Seq1 > &) |
A standard container giving FIFO behavior.
_Tp | Type of element. |
_Sequence | Type of underlying sequence, defaults to deque<_Tp>. |
Meets many of the requirements of a container, but does not define anything to do with iterators. Very few of the other standard container interfaces are defined.
This is not a true container, but an adaptor. It holds another container, and provides a wrapper interface to that container. The wrapper is what enforces strict first-in-first-out queue behavior.
The second template parameter defines the type of the underlying sequence/container. It defaults to std::deque, but it can be any type that supports front
, back
, push_back
, and pop_front
, such as std::list or an appropriate user-defined type.
Members not found in normal containers are container_type
, which is a typedef for the second Sequence parameter, and push
and pop
, which are standard queue/FIFO operations.
Definition at line 104 of file stl_queue.h.
typedef _Sequence::const_reference std::queue< _Tp, _Sequence >::const_reference |
Definition at line 148 of file stl_queue.h.
typedef _Sequence std::queue< _Tp, _Sequence >::container_type |
Definition at line 150 of file stl_queue.h.
typedef _Sequence::reference std::queue< _Tp, _Sequence >::reference |
Definition at line 147 of file stl_queue.h.
typedef _Sequence::size_type std::queue< _Tp, _Sequence >::size_type |
Definition at line 149 of file stl_queue.h.
typedef _Sequence::value_type std::queue< _Tp, _Sequence >::value_type |
Definition at line 146 of file stl_queue.h.
|
inline |
|
inlineexplicit |
Definition at line 178 of file stl_queue.h.
|
inlineexplicit |
Definition at line 182 of file stl_queue.h.
|
inlineexplicit |
Definition at line 187 of file stl_queue.h.
|
inline |
Definition at line 191 of file stl_queue.h.
|
inline |
Definition at line 195 of file stl_queue.h.
|
inline |
Definition at line 199 of file stl_queue.h.
|
inline |
Definition at line 203 of file stl_queue.h.
|
inlinenodiscard |
Returns a read/write reference to the data at the last element of the queue.
Definition at line 284 of file stl_queue.h.
References c.
|
inlinenodiscard |
Returns a read-only (constant) reference to the data at the last element of the queue.
Definition at line 296 of file stl_queue.h.
References c.
|
inline |
Definition at line 323 of file stl_queue.h.
|
inlinenodiscard |
|
inlinenodiscard |
Returns a read/write reference to the data at the first element of the queue.
Definition at line 260 of file stl_queue.h.
References c.
|
inlinenodiscard |
Returns a read-only (constant) reference to the data at the first element of the queue.
Definition at line 272 of file stl_queue.h.
References c.
|
inline |
Removes first element.
This is a typical queue operation. It shrinks the queue by one. The time complexity of the operation depends on the underlying sequence.
Note that no data is returned, and if the first element's data is needed, it should be retrieved before pop() is called.
Definition at line 357 of file stl_queue.h.
References c.
|
inline |
Add data to the end of the queue.
__x | Data to be added. |
This is a typical queue operation. The function creates an element at the end of the queue and assigns the given data to it. The time complexity of the operation depends on the underlying sequence.
Definition at line 312 of file stl_queue.h.
References c.
|
inline |
Definition at line 317 of file stl_queue.h.
|
inlinenodiscard |
Returns the number of elements in the queue.
Definition at line 251 of file stl_queue.h.
References c.
|
inlinenoexcept |
Definition at line 365 of file stl_queue.h.
|
protected |
c
is the underlying container.
Definition at line 161 of file stl_queue.h.
Referenced by queue(), back(), back(), empty(), front(), front(), std::operator<(), std::operator==(), pop(), push(), and size().