Go to the source code of this file.
|
_STLP_MOVE_TO_STD_NAMESPACE void | swap (_STLP_PRIV _Bit_reference &__x, _STLP_PRIV _Bit_reference &__y) |
|
bool _STLP_CALL | operator== (const _Bit_iterator_base &__x, const _Bit_iterator_base &__y) |
|
bool _STLP_CALL | operator!= (const _Bit_iterator_base &__x, const _Bit_iterator_base &__y) |
|
bool _STLP_CALL | operator< (const _Bit_iterator_base &__x, const _Bit_iterator_base &__y) |
|
bool _STLP_CALL | operator> (const _Bit_iterator_base &__x, const _Bit_iterator_base &__y) |
|
bool _STLP_CALL | operator<= (const _Bit_iterator_base &__x, const _Bit_iterator_base &__y) |
|
bool _STLP_CALL | operator>= (const _Bit_iterator_base &__x, const _Bit_iterator_base &__y) |
|
template<class _Ref , class _Ptr > |
_Bit_iter< _Ref, _Ptr > _STLP_CALL | operator+ (ptrdiff_t __n, const _Bit_iter< _Ref, _Ptr > &__x) |
|
◆ __BVEC_TMPL_HEADER
◆ __BVECTOR
◆ __BVECTOR_QUALIFIED
◆ _Alloc
◆ _STLP_WORD_BIT
◆ _Bit_iterator
◆ operator!=()
◆ operator+()
◆ operator<()
◆ operator<=()
Definition at line 161 of file _bvector.h.
161 {
162 return !(__y < __x);
163}
◆ operator==()
◆ operator>()
Definition at line 158 of file _bvector.h.
158 {
160}
bool _STLP_CALL operator<(const _Bit_iterator_base &__x, const _Bit_iterator_base &__y)
◆ operator>=()
Definition at line 164 of file _bvector.h.
164 {
165 return !(__x < __y);
166}
◆ swap()
Definition at line 85 of file _bvector.h.
85 {
86 bool __tmp = (
bool)__x;
87 __x = __y;
88 __y = __tmp;
89}
◆ _Bit_const_iterator