function
<stack>
std::relational operators (stack) (1)template <class T, class Container> bool operator== (const stack<T,Container>& lhs, const stack<T,Container>& rhs);(2)
template <class T, class Container> bool operator!= (const stack<T,Container>& lhs, const stack<T,Container>& rhs);(3)
template <class T, class Container> bool operator< (const stack<T,Container>& lhs, const stack<T,Container>& rhs);(4)
template <class T, class Container> bool operator<= (const stack<T,Container>& lhs, const stack<T,Container>& rhs);(5)
template <class T, class Container> bool operator> (const stack<T,Container>& lhs, const stack<T,Container>& rhs);(6)
template <class T, class Container> bool operator>= (const stack<T,Container>& lhs, const stack<T,Container>& rhs);
Relational operators for stack
Performs the appropriate comparison operation between lhs and rhs.Each of these operator overloads calls the same operator on the underlying container objects.
true
if the condition holds, and false
otherwise.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4