ReactOS 0.4.15-dev-7934-g1dc8d80
_stack.h File Reference
#include <stl/_deque.h>
Include dependency graph for _stack.h:

Go to the source code of this file.

Classes

class  stack< _Tp, _Sequence >
 

Macros

#define _STLP_STACK_ARGS   _Tp, _Sequence
 
#define _STLP_STACK_HEADER_ARGS   class _Tp, class _Sequence
 

Functions

template<_STLP_STACK_HEADER_ARGS >
bool _STLP_CALL operator== (const stack< _STLP_STACK_ARGS > &__x, const stack< _STLP_STACK_ARGS > &__y)
 
template<_STLP_STACK_HEADER_ARGS >
bool _STLP_CALL operator< (const stack< _STLP_STACK_ARGS > &__x, const stack< _STLP_STACK_ARGS > &__y)
 

Macro Definition Documentation

◆ _STLP_STACK_ARGS

#define _STLP_STACK_ARGS   _Tp, _Sequence

Definition at line 99 of file _stack.h.

◆ _STLP_STACK_HEADER_ARGS

#define _STLP_STACK_HEADER_ARGS   class _Tp, class _Sequence

Definition at line 100 of file _stack.h.

Function Documentation

◆ operator<()

Definition at line 111 of file _stack.h.

113{ return __x._Get_s() < __y._Get_s(); }
const _Sequence & _Get_s() const
Definition: _stack.h:88

◆ operator==()

Definition at line 106 of file _stack.h.

108{ return __x._Get_s() == __y._Get_s(); }