operator==,!=,<,<=,>,>=(std::stack)
De cppreference.com
<metanoindex/>
Ciclo de predefinições detetado: Predefinição:include page
<tbody> </tbody> template< > bool operator==( stack<>& lhs, stack<>& rhs ); |
(1) | |
template< > bool operator!=( stack<>& lhs, stack<>& rhs ); |
(2) | |
template< > bool operator<( stack<>& lhs, stack<>& rhs ); |
(3) | |
template< > bool operator<=( stack<>& lhs, stack<>& rhs ); |
(4) | |
template< > bool operator>( stack<>& lhs, stack<>& rhs ); |
(5) | |
template< > bool operator>=( stack<>& lhs, stack<>& 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.
Parâmetros
Valor de retorno
true if the corresponding comparison yields true, false otherwise.
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.
You can help to correct and verify the translation. Click here for instructions.
