Espaços nominais
Variantes
Acções

operator==,!=,<,<=,>,>=(std::queue)

Da cppreference.com
< cpp‎ | container‎ | queue

 
 
 
std :: fila
Funções de membro
Original:
Member functions
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
queue::queue
queue::~queue
queue::operator=
acesso. Elemento
Original:
Element access
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
queue::front
queue::back
Capacidade
Original:
Capacity
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
queue::empty
queue::size
Modificadores
Original:
Modifiers
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
queue::push
queue::emplace
queue::pop
queue::swap
 

Ciclo de predefinições detectado: Predefinição:include page

template<  >

bool operator==( queue<>& lhs,

                 queue<>& rhs );
(1)
template<  >

bool operator!=( queue<>& lhs,

                 queue<>& rhs );
(2)
template<  >

bool operator<( queue<>& lhs,

                queue<>& rhs );
(3)
template<  >

bool operator<=( queue<>& lhs,

                 queue<>& rhs );
(4)
template<  >

bool operator>( queue<>& lhs,

                queue<>& rhs );
(5)
template<  >

bool operator>=( queue<>& lhs,

                 queue<>& rhs );
(6)

Compares the contents of the underlying containers of two container adaptors. The comparison is done by applying the corresponding operator to the underlying containers.

[editar]Parâmetros

lhs, rhs - container adaptors whose contents to compare

[editar]Valor de retorno

true if the corresponding comparison yields true, false otherwise.

[editar]Complexidade

Linear no tamanho do recipiente
Original:
Linear in the size of the container
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
close