operator==,!=,<,<=,>,>=,<=>(std::stack)
template< class T, class Container > bool operator==( const std::stack<T,Container>& lhs, const std::stack<T,Container>& rhs ); |
(1) | |
template< class T, class Container > bool operator!=( const std::stack<T,Container>& lhs, const std::stack<T,Container>& rhs ); |
(2) | |
template< class T, class Container > bool operator<( const std::stack<T,Container>& lhs, const std::stack<T,Container>& rhs ); |
(3) | |
template< class T, class Container > bool operator<=( const std::stack<T,Container>& lhs, const std::stack<T,Container>& rhs ); |
(4) | |
template< class T, class Container > bool operator>( const std::stack<T,Container>& lhs, const std::stack<T,Container>& rhs ); |
(5) | |
template< class T, class Container > bool operator>=( const std::stack<T,Container>& lhs, const std::stack<T,Container>& rhs ); |
(6) | |
template< class T, std::three_way_comparable Container > std::compare_three_way_result_t<Container> |
(7) | (C++20 起) |
比较二个容器适配器的底层容器。通过应用对应的运算符到底层容器进行比较。
参数
lhs, rhs | - | 要比较内容的迭代器适配器 |
-T 必须满足可相等比较 (EqualityComparable) 的要求。
|
返回值
@1-6若对应比较产出 true 则为 true ,否则为 false 。
7) 底层容器上三路比较的结果。
复杂度
与容器大小成线性