STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Public Types | Public Member Functions | List of all members
_Vb_const_iterator< _Alloc > Class Template Reference
Inheritance diagram for _Vb_const_iterator< _Alloc >:
_Vb_iter_base< _Alloc > _Iterator012< random_access_iterator_tag, _Bool, _Alloc::difference_type, bool *, bool, _Iterator_base > _Iterator_base0 _Vb_iterator< _Alloc >

Public Types

typedef _Vb_iter_base< _Alloc > _Mybase
 
typedef _Vb_const_iterator< _Alloc > _Mytype
 
typedef _Vb_reference< _Alloc > _Reft
 
typedef bool const_reference
 
typedef random_access_iterator_tag iterator_category
 
typedef _Bool value_type
 
typedef _Alloc::size_type size_type
 
typedef _Alloc::difference_type difference_type
 
typedef const_referencepointer
 
typedef const_reference reference
 
- Public Types inherited from _Vb_iter_base< _Alloc >
typedef _Alloc::size_type _Sizet
 
typedef vector< _Bool, _Alloc > _Mycont
 
- Public Types inherited from _Iterator012< random_access_iterator_tag, _Bool, _Alloc::difference_type, bool *, bool, _Iterator_base >
typedef random_access_iterator_tag iterator_category
 
typedef _Bool value_type
 
typedef _Alloc::difference_type difference_type
 
typedef _Alloc::difference_type distance_type
 
typedef boolpointer
 
typedef bool reference
 

Public Member Functions

 _Vb_const_iterator ()
 
 _Vb_const_iterator (const _Vbase *_Ptr, const _Container_base *_Mypvbool)
 
const_reference operator* () const
 
_Mytypeoperator++ ()
 
_Mytype operator++ (int)
 
_Mytypeoperator-- ()
 
_Mytype operator-- (int)
 
_Mytypeoperator+= (difference_type _Off)
 
_Mytype operator+ (difference_type _Off) const
 
_Mytypeoperator-= (difference_type _Off)
 
_Mytype operator- (difference_type _Off) const
 
difference_type operator- (const _Mytype &_Right) const
 
const_reference operator[] (difference_type _Off) const
 
bool operator== (const _Mytype &_Right) const
 
bool operator!= (const _Mytype &_Right) const
 
bool operator< (const _Mytype &_Right) const
 
bool operator> (const _Mytype &_Right) const
 
bool operator<= (const _Mytype &_Right) const
 
bool operator>= (const _Mytype &_Right) const
 
void _Compat (const _Mytype &) const
 
void _Dec ()
 
void _Inc ()
 
- Public Member Functions inherited from _Vb_iter_base< _Alloc >
 _Vb_iter_base ()
 
 _Vb_iter_base (const _Vbase *_Ptr, _Sizet _Off, const _Container_base *_Mypvbool)
 
void _Advance (_Sizet _Off)
 
int _Valid (_Sizet _Inc) const
 
- Public Member Functions inherited from _Iterator_base0
void _Adopt (const void *)
 
const _Container_base0_Getcont () const
 

Additional Inherited Members

- Public Attributes inherited from _Vb_iter_base< _Alloc >
const _Vbase_Myptr
 
_Sizet _Myoff
 

Member Typedef Documentation

template<class _Alloc>
typedef _Vb_iter_base<_Alloc> _Vb_const_iterator< _Alloc >::_Mybase
template<class _Alloc>
typedef _Vb_const_iterator<_Alloc> _Vb_const_iterator< _Alloc >::_Mytype
template<class _Alloc>
typedef _Vb_reference<_Alloc> _Vb_const_iterator< _Alloc >::_Reft
template<class _Alloc>
typedef bool _Vb_const_iterator< _Alloc >::const_reference
template<class _Alloc>
typedef _Alloc::difference_type _Vb_const_iterator< _Alloc >::difference_type
template<class _Alloc>
typedef random_access_iterator_tag _Vb_const_iterator< _Alloc >::iterator_category
template<class _Alloc>
typedef const_reference* _Vb_const_iterator< _Alloc >::pointer
template<class _Alloc>
typedef const_reference _Vb_const_iterator< _Alloc >::reference
template<class _Alloc>
typedef _Alloc::size_type _Vb_const_iterator< _Alloc >::size_type
template<class _Alloc>
typedef _Bool _Vb_const_iterator< _Alloc >::value_type

Constructor & Destructor Documentation

template<class _Alloc>
_Vb_const_iterator< _Alloc >::_Vb_const_iterator ( )
inline
2000  { // construct with null reference
2001  }
template<class _Alloc>
_Vb_const_iterator< _Alloc >::_Vb_const_iterator ( const _Vbase _Ptr,
const _Container_base _Mypvbool 
)
inline
2004  : _Mybase(_Ptr, 0, _Mypvbool)
2005  { // construct with offset and pointer
2006  }
_Vb_iter_base< _Alloc > _Mybase
Definition: vector:1986

Member Function Documentation

template<class _Alloc>
void _Vb_const_iterator< _Alloc >::_Compat ( const _Mytype ) const
inline
2139  { // test for compatible iterator pair
2140  }
template<class _Alloc>
void _Vb_const_iterator< _Alloc >::_Dec ( )
inline
2144  { // decrement bit position
2145  if (this->_Myoff != 0)
2146  --this->_Myoff;
2147  else
2148  { // move to previous word
2149  #if _ITERATOR_DEBUG_LEVEL == 2
2150  if (this->_Getcont() == 0 || 0 < this->_Valid((size_type)-1))
2151  { // report error
2152  _DEBUG_ERROR("vector<bool> iterator not decrementable");
2154  }
2155 
2156  #elif _ITERATOR_DEBUG_LEVEL == 1
2157  _SCL_SECURE_VALIDATE(this->_Getcont() != 0);
2158  _SCL_SECURE_VALIDATE_RANGE(this->_Valid((size_type)-1) <= 0);
2159  #endif /* _ITERATOR_DEBUG_LEVEL */
2160 
2161  this->_Myoff = _VBITS - 1;
2162  --this->_Myptr;
2163  }
2164  }
const _Container_base0 * _Getcont() const
Definition: xutility:57
#define _SCL_SECURE_OUT_OF_RANGE
Definition: yvals.h:351
const _Vbase * _Myptr
Definition: vector:1899
int _Valid(_Sizet _Inc) const
Definition: vector:1883
#define _SCL_SECURE_VALIDATE_RANGE(cond)
Definition: yvals.h:347
#define _DEBUG_ERROR(mesg)
Definition: xutility:32
const int _VBITS
Definition: vector:1848
_Sizet _Myoff
Definition: vector:1900
_Alloc::size_type size_type
Definition: vector:1994
#define _SCL_SECURE_VALIDATE(cond)
Definition: yvals.h:346
template<class _Alloc>
void _Vb_const_iterator< _Alloc >::_Inc ( )
inline
2167  { // increment bit position
2168  if (this->_Myoff < _VBITS - 1)
2169  ++this->_Myoff;
2170  else
2171  { // move to next word
2172  #if _ITERATOR_DEBUG_LEVEL == 2
2173  if (this->_Getcont() == 0 || 0 < this->_Valid(1))
2174  { // report error
2175  _DEBUG_ERROR("vector<bool> iterator not incrementable");
2177  }
2178 
2179  #elif _ITERATOR_DEBUG_LEVEL == 1
2180  _SCL_SECURE_VALIDATE(this->_Getcont() != 0);
2181  _SCL_SECURE_VALIDATE_RANGE(this->_Valid(1) <= 0);
2182  #endif /* _ITERATOR_DEBUG_LEVEL */
2183 
2184  this->_Myoff = 0;
2185  ++this->_Myptr;
2186  }
2187  }
const _Container_base0 * _Getcont() const
Definition: xutility:57
#define _SCL_SECURE_OUT_OF_RANGE
Definition: yvals.h:351
const _Vbase * _Myptr
Definition: vector:1899
int _Valid(_Sizet _Inc) const
Definition: vector:1883
#define _SCL_SECURE_VALIDATE_RANGE(cond)
Definition: yvals.h:347
#define _DEBUG_ERROR(mesg)
Definition: xutility:32
const int _VBITS
Definition: vector:1848
_Sizet _Myoff
Definition: vector:1900
#define _SCL_SECURE_VALIDATE(cond)
Definition: yvals.h:346
template<class _Alloc>
bool _Vb_const_iterator< _Alloc >::operator!= ( const _Mytype _Right) const
inline
2095  { // test for iterator inequality
2096  return (!(*this == _Right));
2097  }
const _Ty & _Right
Definition: algorithm:4087
template<class _Alloc>
const_reference _Vb_const_iterator< _Alloc >::operator* ( ) const
inline
2009  { // return (reference to) designated object
2010  return (_Reft(*this));
2011  }
_Vb_reference< _Alloc > _Reft
Definition: vector:1989
template<class _Alloc>
_Mytype _Vb_const_iterator< _Alloc >::operator+ ( difference_type  _Off) const
inline
2057  { // return this + integer
2058  _Mytype _Tmp = *this;
2059  return (_Tmp += _Off);
2060  }
_Vb_const_iterator< _Alloc > _Mytype
Definition: vector:1987
template<class _Alloc>
_Mytype& _Vb_const_iterator< _Alloc >::operator++ ( )
inline
2014  { // preincrement
2015  _Inc();
2016  return (*this);
2017  }
void _Inc()
Definition: vector:2166
template<class _Alloc>
_Mytype _Vb_const_iterator< _Alloc >::operator++ ( int  )
inline
2020  { // postincrement
2021  _Mytype _Tmp = *this;
2022  ++*this;
2023  return (_Tmp);
2024  }
_Vb_const_iterator< _Alloc > _Mytype
Definition: vector:1987
template<class _Alloc>
_Mytype& _Vb_const_iterator< _Alloc >::operator+= ( difference_type  _Off)
inline
2040  { // increment by integer
2041  if (_Off < 0 && this->_Myoff < 0 - (size_type)_Off)
2042  { /* add negative increment */
2043  this->_Myoff += _Off;
2044  this->_Myptr -= 1 + ((size_type)(-1) - this->_Myoff) / _VBITS;
2045  this->_Myoff %= _VBITS;
2046  }
2047  else
2048  { /* add non-negative increment */
2049  this->_Myoff += _Off;
2050  this->_Myptr += this->_Myoff / _VBITS;
2051  this->_Myoff %= _VBITS;
2052  }
2053  return (*this);
2054  }
const _Vbase * _Myptr
Definition: vector:1899
const int _VBITS
Definition: vector:1848
_Sizet _Myoff
Definition: vector:1900
_Alloc::size_type size_type
Definition: vector:1994
template<class _Alloc>
_Mytype _Vb_const_iterator< _Alloc >::operator- ( difference_type  _Off) const
inline
2068  { // return this - integer
2069  _Mytype _Tmp = *this;
2070  return (_Tmp -= _Off);
2071  }
_Vb_const_iterator< _Alloc > _Mytype
Definition: vector:1987
template<class _Alloc>
difference_type _Vb_const_iterator< _Alloc >::operator- ( const _Mytype _Right) const
inline
2075  { // return difference of iterators
2076  _Compat(_Right);
2077  return (_VBITS * (this->_Myptr - _Right._Myptr)
2078  + (difference_type)this->_Myoff
2079  - (difference_type)_Right._Myoff);
2080  }
_Alloc::difference_type difference_type
Definition: vector:1995
const _Vbase * _Myptr
Definition: vector:1899
void _Compat(const _Mytype &) const
Definition: vector:2138
const int _VBITS
Definition: vector:1848
const _Ty & _Right
Definition: algorithm:4087
template<class _Alloc>
_Mytype& _Vb_const_iterator< _Alloc >::operator-- ( )
inline
2027  { // predecrement
2028  _Dec();
2029  return (*this);
2030  }
void _Dec()
Definition: vector:2143
template<class _Alloc>
_Mytype _Vb_const_iterator< _Alloc >::operator-- ( int  )
inline
2033  { // postdecrement
2034  _Mytype _Tmp = *this;
2035  --*this;
2036  return (_Tmp);
2037  }
_Vb_const_iterator< _Alloc > _Mytype
Definition: vector:1987
template<class _Alloc>
_Mytype& _Vb_const_iterator< _Alloc >::operator-= ( difference_type  _Off)
inline
2063  { // decrement by integer
2064  return (*this += -_Off);
2065  }
template<class _Alloc>
bool _Vb_const_iterator< _Alloc >::operator< ( const _Mytype _Right) const
inline
2100  { // test if this < _Right
2101  _Compat(_Right);
2102  return (this->_Myptr < _Right._Myptr
2103  || (this->_Myptr == _Right._Myptr
2104  && this->_Myoff < _Right._Myoff));
2105  }
const _Vbase * _Myptr
Definition: vector:1899
void _Compat(const _Mytype &) const
Definition: vector:2138
const _Ty & _Right
Definition: algorithm:4087
template<class _Alloc>
bool _Vb_const_iterator< _Alloc >::operator<= ( const _Mytype _Right) const
inline
2113  { // test if this <= _Right
2114  return (!(_Right < *this));
2115  }
const _Ty & _Right
Definition: algorithm:4087
template<class _Alloc>
bool _Vb_const_iterator< _Alloc >::operator== ( const _Mytype _Right) const
inline
2088  { // test for iterator equality
2089  _Compat(_Right);
2090  return (this->_Myptr == _Right._Myptr
2091  && this->_Myoff == _Right._Myoff);
2092  }
const _Vbase * _Myptr
Definition: vector:1899
void _Compat(const _Mytype &) const
Definition: vector:2138
const _Ty & _Right
Definition: algorithm:4087
template<class _Alloc>
bool _Vb_const_iterator< _Alloc >::operator> ( const _Mytype _Right) const
inline
2108  { // test if this > _Right
2109  return (_Right < *this);
2110  }
const _Ty & _Right
Definition: algorithm:4087
template<class _Alloc>
bool _Vb_const_iterator< _Alloc >::operator>= ( const _Mytype _Right) const
inline
2118  { // test if this >= _Right
2119  return (!(*this < _Right));
2120  }
const _Ty & _Right
Definition: algorithm:4087
template<class _Alloc>
const_reference _Vb_const_iterator< _Alloc >::operator[] ( difference_type  _Off) const
inline
2083  { // subscript
2084  return (*(*this + _Off));
2085  }

The documentation for this class was generated from the following file: