STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Public Types | Public Member Functions | Static Public Attributes | Protected Member Functions | List of all members
deque< _Ty, _Alloc > Class Template Reference
Inheritance diagram for deque< _Ty, _Alloc >:
_Deque_alloc<!is_empty< _Alloc >::value, _Deque_base_types< _Ty, _Alloc > > _Deque_val< _Deque_base_types< _Ty, _Alloc >::_Val_types > _Container_base12

Public Types

enum  { _EEN_DS = _DEQUESIZ }
 
typedef deque< _Ty, _Alloc_Myt
 
typedef _Deque_alloc<!is_empty< _Alloc >::value, _Deque_base_types< _Ty, _Alloc > > _Mybase
 
typedef _Alloc allocator_type
 
typedef _Mybase::_Alty _Alty
 
typedef _Mybase::_Alpty _Alpty
 
typedef _Mybase::_Mapptr _Mapptr
 
typedef _Mybase::value_type value_type
 
typedef _Mybase::size_type size_type
 
typedef _Mybase::difference_type difference_type
 
typedef _Mybase::pointer pointer
 
typedef _Mybase::const_pointer const_pointer
 
typedef _Mybase::reference reference
 
typedef _Mybase::const_reference const_reference
 
typedef _Mybase::iterator iterator
 
typedef _Mybase::const_iterator const_iterator
 
typedef _STD reverse_iterator< iteratorreverse_iterator
 
typedef _STD reverse_iterator< const_iteratorconst_reverse_iterator
 
- Public Types inherited from _Deque_alloc<!is_empty< _Alloc >::value, _Deque_base_types< _Ty, _Alloc > >
typedef _Deque_alloc< _Al_has_storage, _Deque_base_types< _Ty, _Alloc > > _Myt
 
typedef _Deque_base_types< _Ty, _Alloc >::_Alloc _Alloc
 
typedef _Deque_base_types< _Ty, _Alloc >::_Alty _Alty
 
typedef _Deque_base_types< _Ty, _Alloc >::_Alpty _Alpty
 
- Public Types inherited from _Deque_val< _Deque_base_types< _Ty, _Alloc >::_Val_types >
typedef _Deque_val< _Deque_base_types< _Ty, _Alloc >::_Val_types > _Myt
 
typedef _Deque_base_types< _Ty, _Alloc >::_Val_types::value_type value_type
 
typedef _Deque_base_types< _Ty, _Alloc >::_Val_types::size_type size_type
 
typedef _Deque_base_types< _Ty, _Alloc >::_Val_types::difference_type difference_type
 
typedef _Deque_base_types< _Ty, _Alloc >::_Val_types::pointer pointer
 
typedef _Deque_base_types< _Ty, _Alloc >::_Val_types::const_pointer const_pointer
 
typedef _Deque_base_types< _Ty, _Alloc >::_Val_types::reference reference
 
typedef _Deque_base_types< _Ty, _Alloc >::_Val_types::const_reference const_reference
 
typedef _Deque_base_types< _Ty, _Alloc >::_Val_types::_Mapptr _Mapptr
 
typedef _Deque_iterator< _Mytiterator
 
typedef _Deque_const_iterator< _Mytconst_iterator
 

Public Member Functions

 deque ()
 
 deque (const _Alloc &_Al)
 
 deque (size_type _Count)
 
 deque (size_type _Count, const value_type &_Val)
 
 deque (size_type _Count, const value_type &_Val, const _Alloc &_Al)
 
 deque (const _Myt &_Right)
 
 deque (const _Myt &_Right, const _Alloc &_Al)
 
template<class _Iter , class = typename enable_if<_Is_iterator<_Iter>::value, void>::type>
 deque (_Iter _First, _Iter _Last)
 
template<class _Iter , class = typename enable_if<_Is_iterator<_Iter>::value, void>::type>
 deque (_Iter _First, _Iter _Last, const _Alloc &_Al)
 
template<class _Iter >
void _Construct (_Iter _First, _Iter _Last)
 
void _Construct_n (size_type _Count, const value_type &_Val)
 
 deque (_Myt &&_Right)
 
 deque (_Myt &&_Right, const _Alloc &_Al)
 
_Mytoperator= (_Myt &&_Right)
 
void _Assign_rv (_Myt &&_Right, true_type)
 
void _Assign_rv (_Myt &&_Right, false_type)
 
void _Assign_rv (_Myt &&_Right)
 
void push_front (value_type &&_Val)
 
void push_back (value_type &&_Val)
 
iterator insert (const_iterator _Where, _Ty &&_Val)
 
template<class... _Valty>
void emplace_front (_Valty &&..._Val)
 
template<class... _Valty>
void emplace_back (_Valty &&..._Val)
 
template<class... _Valty>
iterator emplace (const_iterator _Where, _Valty &&..._Val)
 
 deque (_XSTD initializer_list< value_type > _Ilist, const _Alloc &_Al=allocator_type())
 
_Mytoperator= (_XSTD initializer_list< value_type > _Ilist)
 
void assign (_XSTD initializer_list< value_type > _Ilist)
 
iterator insert (const_iterator _Where, _XSTD initializer_list< value_type > _Ilist)
 
 ~deque () _NOEXCEPT
 
_Mytoperator= (const _Myt &_Right)
 
iterator begin () _NOEXCEPT
 
const_iterator begin () const _NOEXCEPT
 
iterator end () _NOEXCEPT
 
const_iterator end () const _NOEXCEPT
 
iterator _Make_iter (const_iterator _Where) const
 
reverse_iterator rbegin () _NOEXCEPT
 
const_reverse_iterator rbegin () const _NOEXCEPT
 
reverse_iterator rend () _NOEXCEPT
 
const_reverse_iterator rend () const _NOEXCEPT
 
const_iterator cbegin () const _NOEXCEPT
 
const_iterator cend () const _NOEXCEPT
 
const_reverse_iterator crbegin () const _NOEXCEPT
 
const_reverse_iterator crend () const _NOEXCEPT
 
void shrink_to_fit ()
 
void resize (size_type _Newsize)
 
void resize (size_type _Newsize, const value_type &_Val)
 
size_type size () const _NOEXCEPT
 
size_type max_size () const _NOEXCEPT
 
bool empty () const _NOEXCEPT
 
allocator_type get_allocator () const _NOEXCEPT
 
const_reference at (size_type _Pos) const
 
reference at (size_type _Pos)
 
const_reference operator[] (size_type _Pos) const
 
reference operator[] (size_type _Pos)
 
reference front ()
 
const_reference front () const
 
reference back ()
 
const_reference back () const
 
void push_front (const value_type &_Val)
 
void pop_front ()
 
void push_back (const value_type &_Val)
 
void pop_back ()
 
template<class _Iter >
enable_if< _Is_iterator< _Iter >::value, void >::type assign (_Iter _First, _Iter _Last)
 
void assign (size_type _Count, const value_type &_Val)
 
iterator insert (const_iterator _Where, const value_type &_Val)
 
iterator insert (const_iterator _Where, size_type _Count, const value_type &_Val)
 
template<class _Iter >
enable_if< _Is_iterator< _Iter >::value, iterator >::type insert (const_iterator _Where, _Iter _First, _Iter _Last)
 
iterator erase (const_iterator _Where)
 
iterator erase (const_iterator _First_arg, const_iterator _Last_arg)
 
void clear () _NOEXCEPT
 
void swap (_Myt &_Right)
 
- Public Member Functions inherited from _Deque_alloc<!is_empty< _Alloc >::value, _Deque_base_types< _Ty, _Alloc > >
 _Deque_alloc (const _Alloc &_Al=_Alloc())
 
 ~_Deque_alloc () _NOEXCEPT
 
void _Change_alloc (const _Alty &_Al)
 
void _Swap_alloc (_Myt &_Right)
 
void _Alloc_proxy ()
 
void _Free_proxy ()
 
_Alty_Getal ()
 
const _Alty_Getal () const
 
- Public Member Functions inherited from _Deque_val< _Deque_base_types< _Ty, _Alloc >::_Val_types >
 _Deque_val ()
 
size_type _Getblock (size_type _Off) const
 
- Public Member Functions inherited from _Container_base12
 _Container_base12 ()
 
 _Container_base12 (const _Container_base12 &)
 
_Container_base12operator= (const _Container_base12 &)
 
 ~_Container_base12 () _NOEXCEPT
 
_Iterator_base12 ** _Getpfirst () const
 
void _Orphan_all ()
 
void _Swap_all (_Container_base12 &)
 

Static Public Attributes

static const int _EEM_DS = _DEQUESIZ
 

Protected Member Functions

void _Insert_n (const_iterator _Where, size_type _Count, const value_type &_Val)
 
 __declspec (noreturn) void _Xlen() const
 
 __declspec (noreturn) void _Xran() const
 
void _Growmap (size_type _Count)
 
void _Tidy ()
 

Additional Inherited Members

- Public Attributes inherited from _Deque_alloc<!is_empty< _Alloc >::value, _Deque_base_types< _Ty, _Alloc > >
_Deque_base_types< _Ty, _Alloc >::_Alty _Alval
 
- Public Attributes inherited from _Deque_val< _Deque_base_types< _Ty, _Alloc >::_Val_types >
_Mapptr _Map
 
size_type _Mapsize
 
size_type _Myoff
 
size_type _Mysize
 
- Public Attributes inherited from _Container_base12
_Container_proxy_Myproxy
 

Member Typedef Documentation

template<class _Ty, class _Alloc = allocator<_Ty>>
typedef _Mybase::_Alpty deque< _Ty, _Alloc >::_Alpty
template<class _Ty, class _Alloc = allocator<_Ty>>
typedef _Mybase::_Alty deque< _Ty, _Alloc >::_Alty
template<class _Ty, class _Alloc = allocator<_Ty>>
typedef _Mybase::_Mapptr deque< _Ty, _Alloc >::_Mapptr
template<class _Ty, class _Alloc = allocator<_Ty>>
typedef _Deque_alloc<!is_empty<_Alloc>::value, _Deque_base_types<_Ty, _Alloc> > deque< _Ty, _Alloc >::_Mybase
template<class _Ty, class _Alloc = allocator<_Ty>>
typedef deque<_Ty, _Alloc> deque< _Ty, _Alloc >::_Myt
template<class _Ty, class _Alloc = allocator<_Ty>>
typedef _Alloc deque< _Ty, _Alloc >::allocator_type
template<class _Ty, class _Alloc = allocator<_Ty>>
typedef _Mybase::const_iterator deque< _Ty, _Alloc >::const_iterator
template<class _Ty, class _Alloc = allocator<_Ty>>
typedef _Mybase::const_pointer deque< _Ty, _Alloc >::const_pointer
template<class _Ty, class _Alloc = allocator<_Ty>>
typedef _Mybase::const_reference deque< _Ty, _Alloc >::const_reference
template<class _Ty, class _Alloc = allocator<_Ty>>
typedef _STD reverse_iterator<const_iterator> deque< _Ty, _Alloc >::const_reverse_iterator
template<class _Ty, class _Alloc = allocator<_Ty>>
typedef _Mybase::difference_type deque< _Ty, _Alloc >::difference_type
template<class _Ty, class _Alloc = allocator<_Ty>>
typedef _Mybase::iterator deque< _Ty, _Alloc >::iterator
template<class _Ty, class _Alloc = allocator<_Ty>>
typedef _Mybase::pointer deque< _Ty, _Alloc >::pointer
template<class _Ty, class _Alloc = allocator<_Ty>>
typedef _Mybase::reference deque< _Ty, _Alloc >::reference
template<class _Ty, class _Alloc = allocator<_Ty>>
typedef _STD reverse_iterator<iterator> deque< _Ty, _Alloc >::reverse_iterator
template<class _Ty, class _Alloc = allocator<_Ty>>
typedef _Mybase::size_type deque< _Ty, _Alloc >::size_type
template<class _Ty, class _Alloc = allocator<_Ty>>
typedef _Mybase::value_type deque< _Ty, _Alloc >::value_type

Member Enumeration Documentation

template<class _Ty, class _Alloc = allocator<_Ty>>
anonymous enum
Enumerator
_EEN_DS 
948 {_EEN_DS = _DEQUESIZ}; // helper for expression evaluator
Definition: deque:948
#define _DEQUESIZ
Definition: deque:19

Constructor & Destructor Documentation

template<class _Ty, class _Alloc = allocator<_Ty>>
deque< _Ty, _Alloc >::deque ( )
inline
950  : _Mybase()
951  { // construct empty deque
952  }
_Deque_alloc<!is_empty< _Alloc >::value, _Deque_base_types< _Ty, _Alloc > > _Mybase
Definition: deque:926
template<class _Ty, class _Alloc = allocator<_Ty>>
deque< _Ty, _Alloc >::deque ( const _Alloc _Al)
inlineexplicit
955  : _Mybase(_Al)
956  { // construct empty deque with allocator
957  }
_Deque_alloc<!is_empty< _Alloc >::value, _Deque_base_types< _Ty, _Alloc > > _Mybase
Definition: deque:926
template<class _Ty, class _Alloc = allocator<_Ty>>
deque< _Ty, _Alloc >::deque ( size_type  _Count)
inlineexplicit
960  : _Mybase()
961  { // construct from _Count * value_type()
962  resize(_Count);
963  }
_Deque_alloc<!is_empty< _Alloc >::value, _Deque_base_types< _Ty, _Alloc > > _Mybase
Definition: deque:926
void resize(size_type _Newsize)
Definition: deque:1333
_Diff _Count
Definition: algorithm:1941
template<class _Ty, class _Alloc = allocator<_Ty>>
deque< _Ty, _Alloc >::deque ( size_type  _Count,
const value_type _Val 
)
inline
966  : _Mybase()
967  { // construct from _Count * _Val
969  }
void _Construct_n(size_type _Count, const value_type &_Val)
Definition: deque:1024
_Deque_alloc<!is_empty< _Alloc >::value, _Deque_base_types< _Ty, _Alloc > > _Mybase
Definition: deque:926
_Diff _Count
Definition: algorithm:1941
_FwdIt const _Ty _Val
Definition: algorithm:1938
template<class _Ty, class _Alloc = allocator<_Ty>>
deque< _Ty, _Alloc >::deque ( size_type  _Count,
const value_type _Val,
const _Alloc _Al 
)
inline
972  : _Mybase(_Al)
973  { // construct from _Count * _Val with allocator
975  }
void _Construct_n(size_type _Count, const value_type &_Val)
Definition: deque:1024
_Deque_alloc<!is_empty< _Alloc >::value, _Deque_base_types< _Ty, _Alloc > > _Mybase
Definition: deque:926
_Diff _Count
Definition: algorithm:1941
_FwdIt const _Ty _Val
Definition: algorithm:1938
template<class _Ty, class _Alloc = allocator<_Ty>>
deque< _Ty, _Alloc >::deque ( const _Myt _Right)
inline
979  : _Mybase(_Right._Getal().select_on_container_copy_construction())
980 
981 
982  { // construct by copying _Right
983  _Construct(_Right.begin(), _Right.end());
984  }
void _Construct(_Iter _First, _Iter _Last)
Definition: deque:1011
_Deque_alloc<!is_empty< _Alloc >::value, _Deque_base_types< _Ty, _Alloc > > _Mybase
Definition: deque:926
const _Ty & _Right
Definition: algorithm:4087
template<class _Ty, class _Alloc = allocator<_Ty>>
deque< _Ty, _Alloc >::deque ( const _Myt _Right,
const _Alloc _Al 
)
inline
987  : _Mybase(_Al)
988  { // construct by copying _Right
989  _Construct(_Right.begin(), _Right.end());
990  }
void _Construct(_Iter _First, _Iter _Last)
Definition: deque:1011
_Deque_alloc<!is_empty< _Alloc >::value, _Deque_base_types< _Ty, _Alloc > > _Mybase
Definition: deque:926
const _Ty & _Right
Definition: algorithm:4087
template<class _Ty, class _Alloc = allocator<_Ty>>
template<class _Iter , class = typename enable_if<_Is_iterator<_Iter>::value, void>::type>
deque< _Ty, _Alloc >::deque ( _Iter  _First,
_Iter  _Last 
)
inline
996  : _Mybase()
997  { // construct from [_First, _Last)
998  _Construct(_First, _Last);
999  }
void _Construct(_Iter _First, _Iter _Last)
Definition: deque:1011
_Deque_alloc<!is_empty< _Alloc >::value, _Deque_base_types< _Ty, _Alloc > > _Mybase
Definition: deque:926
_FwdIt _Last
Definition: algorithm:1936
template<class _Ty, class _Alloc = allocator<_Ty>>
template<class _Iter , class = typename enable_if<_Is_iterator<_Iter>::value, void>::type>
deque< _Ty, _Alloc >::deque ( _Iter  _First,
_Iter  _Last,
const _Alloc _Al 
)
inline
1005  : _Mybase(_Al)
1006  { // construct from [_First, _Last) with allocator
1007  _Construct(_First, _Last);
1008  }
void _Construct(_Iter _First, _Iter _Last)
Definition: deque:1011
_Deque_alloc<!is_empty< _Alloc >::value, _Deque_base_types< _Ty, _Alloc > > _Mybase
Definition: deque:926
_FwdIt _Last
Definition: algorithm:1936
template<class _Ty, class _Alloc = allocator<_Ty>>
deque< _Ty, _Alloc >::deque ( _Myt &&  _Right)
inline
1064  : _Mybase(_Right._Getal())
1065  { // construct by moving _Right
1066  _Assign_rv(_STD forward<_Myt>(_Right), true_type());
1067  }
void _Assign_rv(_Myt &&_Right, true_type)
Definition: deque:1088
_Deque_alloc<!is_empty< _Alloc >::value, _Deque_base_types< _Ty, _Alloc > > _Mybase
Definition: deque:926
integral_constant< bool, true > true_type
Definition: xtr1common:47
const _Ty & _Right
Definition: algorithm:4087
template<class _Ty, class _Alloc = allocator<_Ty>>
deque< _Ty, _Alloc >::deque ( _Myt &&  _Right,
const _Alloc _Al 
)
inline
1070  : _Mybase(_Al)
1071  { // construct by moving _Right
1072  _Assign_rv(_STD forward<_Myt>(_Right));
1073  }
void _Assign_rv(_Myt &&_Right, true_type)
Definition: deque:1088
_Deque_alloc<!is_empty< _Alloc >::value, _Deque_base_types< _Ty, _Alloc > > _Mybase
Definition: deque:926
const _Ty & _Right
Definition: algorithm:4087
template<class _Ty, class _Alloc = allocator<_Ty>>
deque< _Ty, _Alloc >::deque ( _XSTD initializer_list< value_type _Ilist,
const _Alloc _Al = allocator_type() 
)
inline
1191  : _Mybase(_Al)
1192  { // construct from initializer_list
1193  insert(begin(), _Ilist.begin(), _Ilist.end());
1194  }
iterator begin() _NOEXCEPT
Definition: deque:1249
_Deque_alloc<!is_empty< _Alloc >::value, _Deque_base_types< _Ty, _Alloc > > _Mybase
Definition: deque:926
iterator insert(const_iterator _Where, _Ty &&_Val)
Definition: deque:1138
template<class _Ty, class _Alloc = allocator<_Ty>>
deque< _Ty, _Alloc >::~deque ( )
inline
1214  { // destroy the deque
1215  _Tidy();
1216  }
void _Tidy()
Definition: deque:1826

Member Function Documentation

template<class _Ty, class _Alloc = allocator<_Ty>>
deque< _Ty, _Alloc >::__declspec ( noreturn  ) const
inlineprotected
1762  { // report a length_error
1763  _Xlength_error("deque<T> too long");
1764  }
template<class _Ty, class _Alloc = allocator<_Ty>>
deque< _Ty, _Alloc >::__declspec ( noreturn  ) const
inlineprotected
1767  { // report an out_of_range error
1768  _Xout_of_range("invalid deque<T> subscript");
1769  }
template<class _Ty, class _Alloc = allocator<_Ty>>
void deque< _Ty, _Alloc >::_Assign_rv ( _Myt &&  _Right,
true_type   
)
inline
1089  { // move from _Right, stealing its contents
1090  this->_Swap_all((_Myt&)_Right);
1091  this->_Map = _Right._Map;
1092  this->_Mapsize = _Right._Mapsize;
1093  this->_Myoff = _Right._Myoff;
1094  this->_Mysize = _Right._Mysize;
1095 
1096  _Right._Map = _Mapptr();
1097  _Right._Mapsize = 0;
1098  _Right._Myoff = 0;
1099  _Right._Mysize = 0;
1100  }
_Mybase::_Mapptr _Mapptr
Definition: deque:931
void _Swap_all(_Container_base12 &)
Definition: xutility:228
deque< _Ty, _Alloc > _Myt
Definition: deque:924
const _Ty & _Right
Definition: algorithm:4087
template<class _Ty, class _Alloc = allocator<_Ty>>
void deque< _Ty, _Alloc >::_Assign_rv ( _Myt &&  _Right,
false_type   
)
inline
1103  { // move from _Right, possibly moving its contents
1104  if (get_allocator() == _Right.get_allocator())
1105  _Assign_rv(_STD forward<_Myt>(_Right), true_type());
1106  else
1108  _STD make_move_iterator(_Right.end()));
1109  }
allocator_type get_allocator() const _NOEXCEPT
Definition: deque:1365
void _Assign_rv(_Myt &&_Right, true_type)
Definition: deque:1088
void _Construct(_Iter _First, _Iter _Last)
Definition: deque:1011
integral_constant< bool, true > true_type
Definition: xtr1common:47
move_iterator< _RanIt > make_move_iterator(_RanIt _Iter)
Definition: xutility:2033
const _Ty & _Right
Definition: algorithm:4087
template<class _Ty, class _Alloc = allocator<_Ty>>
void deque< _Ty, _Alloc >::_Assign_rv ( _Myt &&  _Right)
inline
1112  { // assign by moving _Right
1113  _Assign_rv(_STD forward<_Myt>(_Right),
1114  typename _Alty::propagate_on_container_move_assignment());
1115  }
void _Assign_rv(_Myt &&_Right, true_type)
Definition: deque:1088
const _Ty & _Right
Definition: algorithm:4087
template<class _Ty, class _Alloc = allocator<_Ty>>
template<class _Iter >
void deque< _Ty, _Alloc >::_Construct ( _Iter  _First,
_Iter  _Last 
)
inline
1012  { // initialize from [_First, _Last), input iterators
1013  _TRY_BEGIN
1014 
1015  for (; _First != _Last; ++_First)
1016  emplace_back(*_First);
1017 
1018  _CATCH_ALL
1019  _Tidy();
1020  _RERAISE;
1021  _CATCH_END
1022  }
#define _TRY_BEGIN
Definition: xstddef:60
#define _CATCH_END
Definition: xstddef:63
#define _CATCH_ALL
Definition: xstddef:62
void emplace_back(_Valty &&..._Val)
Definition: deque:1155
#define _RERAISE
Definition: xstddef:74
void _Tidy()
Definition: deque:1826
_FwdIt _Last
Definition: algorithm:1936
template<class _Ty, class _Alloc = allocator<_Ty>>
void deque< _Ty, _Alloc >::_Construct_n ( size_type  _Count,
const value_type _Val 
)
inline
1025  { // construct from _Count * _Val
1026  _TRY_BEGIN
1027  for (; 0 < _Count; --_Count)
1028  push_back(_Val);
1029  _CATCH_ALL
1030  _Tidy();
1031  _RERAISE;
1032  _CATCH_END
1033  }
#define _TRY_BEGIN
Definition: xstddef:60
#define _CATCH_END
Definition: xstddef:63
void push_back(value_type &&_Val)
Definition: deque:1128
#define _CATCH_ALL
Definition: xstddef:62
_Diff _Count
Definition: algorithm:1941
#define _RERAISE
Definition: xstddef:74
_FwdIt const _Ty _Val
Definition: algorithm:1938
void _Tidy()
Definition: deque:1826
template<class _Ty, class _Alloc = allocator<_Ty>>
void deque< _Ty, _Alloc >::_Growmap ( size_type  _Count)
inlineprotected
1772  { // grow map by at least _Count pointers, _Mapsize a power of 2
1773  static_assert(1 < _DEQUEMAPSIZ,
1774  "The _Xlen() test should always be performed.");
1775 
1776  typedef typename _Alpty::pointer _Blockptr;
1777  _Alpty _Almap(this->_Getal());
1778  size_type _Newsize = 0 < this->_Mapsize ? this->_Mapsize : 1;
1779  while (_Newsize - this->_Mapsize < _Count || _Newsize < _DEQUEMAPSIZ)
1780  { // scale _Newsize to 2^N >= _Mapsize + _Count
1781  if (max_size() / _DEQUESIZ - _Newsize < _Newsize)
1782  _Xlen(); // result too long
1783  _Newsize *= 2;
1784  }
1785  _Count = _Newsize - this->_Mapsize;
1786 
1787  size_type _Myboff = this->_Myoff / _DEQUESIZ;
1788  _Mapptr _Newmap = _Almap.allocate(this->_Mapsize + _Count);
1789  _Mapptr _Myptr = _Newmap + _Myboff;
1790 
1791  _Myptr = _Uninitialized_copy(this->_Map + _Myboff,
1792  this->_Map + this->_Mapsize,
1793  _Myptr, _Almap); // copy initial to end
1794  if (_Myboff <= _Count)
1795  { // increment greater than offset of initial block
1796  _Myptr = _Uninitialized_copy(this->_Map,
1797  this->_Map + _Myboff,
1798  _Myptr, _Almap); // copy rest of old
1799  _Uninitialized_default_fill_n(_Myptr, _Count - _Myboff,
1800  _Almap); // clear suffix of new
1801  _Uninitialized_default_fill_n(_Newmap, _Myboff,
1802  _Almap); // clear prefix of new
1803  }
1804  else
1805  { // increment not greater than offset of initial block
1806  _Uninitialized_copy(this->_Map,
1807  this->_Map + _Count,
1808  _Myptr, _Almap); // copy more old
1809  _Myptr = _Uninitialized_copy(this->_Map + _Count,
1810  this->_Map + _Myboff,
1811  _Newmap, _Almap); // copy rest of old
1813  _Almap); // clear rest to initial block
1814  }
1815 
1816  _Destroy_range(this->_Map + _Myboff, this->_Map + this->_Mapsize,
1817  _Almap);
1818  if (this->_Map != _Mapptr())
1819  _Almap.deallocate(this->_Map,
1820  this->_Mapsize); // free storage for old
1821 
1822  this->_Map = _Newmap; // point at new
1823  this->_Mapsize += _Count;
1824  }
_Mybase::_Mapptr _Mapptr
Definition: deque:931
_FwdIt _Uninitialized_copy(_InIt _First, _InIt _Last, _FwdIt _Dest, _Alloc &_Al)
Definition: xmemory:422
#define _DEQUEMAPSIZ
Definition: deque:18
void _Uninitialized_default_fill_n(_FwdIt _First, _Diff _Count, _Alloc &_Al)
Definition: xmemory:688
#define _DEQUESIZ
Definition: deque:19
size_type max_size() const _NOEXCEPT
Definition: deque:1355
void _Destroy_range(typename _Alloc::pointer _First, typename _Alloc::pointer _Last, _Alloc &_Al, _Nonscalar_ptr_iterator_tag)
Definition: xmemory0:77
_Mybase::size_type size_type
Definition: deque:934
_Diff _Count
Definition: algorithm:1941
_Mybase::_Alpty _Alpty
Definition: deque:930
template<class _Ty, class _Alloc = allocator<_Ty>>
void deque< _Ty, _Alloc >::_Insert_n ( const_iterator  _Where,
size_type  _Count,
const value_type _Val 
)
inlineprotected
1682  { // insert _Count * _Val at _Where
1683  iterator _Mid;
1684  size_type _Num;
1685  size_type _Off = _Where - begin();
1686  size_type _Rem = this->_Mysize - _Off;
1687  size_type _Oldsize = this->_Mysize;
1688 
1689  #if _ITERATOR_DEBUG_LEVEL == 2
1690  if (this->_Mysize < _Off)
1691  _DEBUG_ERROR("deque insert iterator outside range");
1692  #endif /* _ITERATOR_DEBUG_LEVEL == 2 */
1693 
1694  if (_Off < _Rem)
1695  { // closer to front
1696  _TRY_BEGIN
1697  if (_Off < _Count)
1698  { // insert longer than prefix
1699  for (_Num = _Count - _Off; 0 < _Num; --_Num)
1700  push_front(_Val); // push excess values
1701  for (_Num = _Off; 0 < _Num; --_Num)
1702  push_front(begin()[_Count - 1]); // push prefix
1703 
1704  _Mid = begin() + _Count;
1705  _STD fill(_Mid, _Mid + _Off,
1706  _Val); // fill in rest of values
1707  }
1708  else
1709  { // insert not longer than prefix
1710  for (_Num = _Count; 0 < _Num; --_Num)
1711  push_front(begin()[_Count - 1]); // push part of prefix
1712 
1713  _Mid = begin() + _Count;
1714  value_type _Tmp = _Val; // in case _Val is in sequence
1715  _Move(_Mid + _Count, _Mid + _Off,
1716  _Mid); // copy rest of prefix
1717  _STD fill(begin() + _Off, _Mid + _Off,
1718  _Tmp); // fill in values
1719  }
1720  _CATCH_ALL
1721  for (; _Oldsize < this->_Mysize; )
1722  pop_front(); // restore old size, at least
1723  _RERAISE;
1724  _CATCH_END
1725  }
1726  else
1727  { // closer to back
1728  _TRY_BEGIN
1729  if (_Rem < _Count)
1730  { // insert longer than suffix
1731  for (_Num = _Count - _Rem; 0 < _Num; --_Num)
1732  push_back(_Val); // push excess values
1733  for (_Num = 0; _Num < _Rem; ++_Num)
1734  push_back(begin()[_Off + _Num]); // push suffix
1735 
1736  _Mid = begin() + _Off;
1737  _STD fill(_Mid, _Mid + _Rem,
1738  _Val); // fill in rest of values
1739  }
1740  else
1741  { // insert not longer than prefix
1742  for (_Num = 0; _Num < _Count; ++_Num)
1743  push_back(begin()[_Off + _Rem
1744  - _Count + _Num]); // push part of prefix
1745 
1746  _Mid = begin() + _Off;
1747  value_type _Tmp = _Val; // in case _Val is in sequence
1748  _Move_backward(_Mid, _Mid + _Rem - _Count,
1749  _Mid + _Rem); // copy rest of prefix
1750  _STD fill(_Mid, _Mid + _Count,
1751  _Tmp); // fill in values
1752  }
1753  _CATCH_ALL
1754  for (; _Oldsize < this->_Mysize; )
1755  pop_back(); // restore old size, at least
1756  _RERAISE;
1757  _CATCH_END
1758  }
1759  }
_BidIt2 _Move_backward(_BidIt1 _First, _BidIt1 _Last, _BidIt2 _Dest, _Nonscalar_ptr_iterator_tag)
Definition: xutility:2523
void pop_back()
Definition: deque:1470
void push_front(value_type &&_Val)
Definition: deque:1118
#define _TRY_BEGIN
Definition: xstddef:60
_OutIt _Move(_InIt _First, _InIt _Last, _OutIt _Dest, _Nonscalar_ptr_iterator_tag)
Definition: xutility:2416
#define _CATCH_END
Definition: xstddef:63
Definition: xutility:337
void pop_front()
Definition: deque:1433
_Mybase::value_type value_type
Definition: deque:933
void push_back(value_type &&_Val)
Definition: deque:1128
void fill(_FwdIt _First, _FwdIt _Last, const _Ty &_Val)
Definition: xutility:2620
iterator begin() _NOEXCEPT
Definition: deque:1249
#define _CATCH_ALL
Definition: xstddef:62
_Mybase::size_type size_type
Definition: deque:934
_Diff _Count
Definition: algorithm:1941
#define _DEBUG_ERROR(mesg)
Definition: xutility:32
#define _RERAISE
Definition: xstddef:74
_FwdIt const _Ty _Val
Definition: algorithm:1938
template<class _Ty, class _Alloc = allocator<_Ty>>
iterator deque< _Ty, _Alloc >::_Make_iter ( const_iterator  _Where) const
inline
1270  { // make iterator from const_iterator
1271  return (iterator(_Where._Myoff, this));
1272  }
_Mybase::iterator iterator
Definition: deque:941
template<class _Ty, class _Alloc = allocator<_Ty>>
void deque< _Ty, _Alloc >::_Tidy ( )
inlineprotected
1827  { // free all storage
1828  _Alpty _Almap(this->_Getal());
1829  while (!empty())
1830  pop_back();
1831  for (size_type _Block = this->_Mapsize; 0 < _Block; )
1832  { // free storage for a block and destroy pointer
1833  if (this->_Map[--_Block] != pointer())
1834  { // free block and destroy its pointer
1835  this->_Getal().deallocate(this->_Map[_Block], _DEQUESIZ);
1836  this->_Getal().destroy(&this->_Map[_Block]);
1837  }
1838  }
1839 
1840  if (this->_Map != _Mapptr())
1841  _Almap.deallocate(this->_Map,
1842  this->_Mapsize); // free storage for map
1843  this->_Mapsize = 0;
1844  this->_Map = _Mapptr();
1845  }
_Mybase::_Mapptr _Mapptr
Definition: deque:931
void pop_back()
Definition: deque:1470
bool empty() const _NOEXCEPT
Definition: deque:1360
#define _DEQUESIZ
Definition: deque:19
_Mybase::pointer pointer
Definition: deque:936
_Mybase::size_type size_type
Definition: deque:934
_Mybase::_Alpty _Alpty
Definition: deque:930
template<class _Ty, class _Alloc = allocator<_Ty>>
void deque< _Ty, _Alloc >::assign ( _XSTD initializer_list< value_type _Ilist)
inline
1203  { // assign initializer_list
1204  assign(_Ilist.begin(), _Ilist.end());
1205  }
void assign(_XSTD initializer_list< value_type > _Ilist)
Definition: deque:1202
template<class _Ty, class _Alloc = allocator<_Ty>>
template<class _Iter >
enable_if<_Is_iterator<_Iter>::value, void>::type deque< _Ty, _Alloc >::assign ( _Iter  _First,
_Iter  _Last 
)
inline
1500  { // assign [_First, _Last), input iterators
1501  clear();
1502 
1503  for (; _First != _Last; ++_First)
1504  emplace_back(*_First);
1505  }
void clear() _NOEXCEPT
Definition: deque:1641
void emplace_back(_Valty &&..._Val)
Definition: deque:1155
_FwdIt _Last
Definition: algorithm:1936
template<class _Ty, class _Alloc = allocator<_Ty>>
void deque< _Ty, _Alloc >::assign ( size_type  _Count,
const value_type _Val 
)
inline
1508  { // assign _Count * _Val
1509  erase(begin(), end());
1510  _Insert_n(begin(), _Count, _Val);
1511  }
iterator erase(const_iterator _Where)
Definition: deque:1594
iterator end() _NOEXCEPT
Definition: deque:1259
iterator begin() _NOEXCEPT
Definition: deque:1249
void _Insert_n(const_iterator _Where, size_type _Count, const value_type &_Val)
Definition: deque:1680
_Diff _Count
Definition: algorithm:1941
_FwdIt const _Ty _Val
Definition: algorithm:1938
template<class _Ty, class _Alloc = allocator<_Ty>>
const_reference deque< _Ty, _Alloc >::at ( size_type  _Pos) const
inline
1371  { // subscript nonmutable sequence with checking
1372  if (this->_Mysize <= _Pos)
1373  _Xran();
1374  return (*(begin() + _Pos));
1375  }
iterator begin() _NOEXCEPT
Definition: deque:1249
template<class _Ty, class _Alloc = allocator<_Ty>>
reference deque< _Ty, _Alloc >::at ( size_type  _Pos)
inline
1378  { // subscript mutable sequence with checking
1379  if (this->_Mysize <= _Pos)
1380  _Xran();
1381  return (*(begin() + _Pos));
1382  }
iterator begin() _NOEXCEPT
Definition: deque:1249
template<class _Ty, class _Alloc = allocator<_Ty>>
reference deque< _Ty, _Alloc >::back ( )
inline
1415  { // return last element of mutable sequence
1416  return (*(end() - 1));
1417  }
iterator end() _NOEXCEPT
Definition: deque:1259
template<class _Ty, class _Alloc = allocator<_Ty>>
const_reference deque< _Ty, _Alloc >::back ( ) const
inline
1420  { // return last element of nonmutable sequence
1421  return (*(end() - 1));
1422  }
iterator end() _NOEXCEPT
Definition: deque:1259
template<class _Ty, class _Alloc = allocator<_Ty>>
iterator deque< _Ty, _Alloc >::begin ( )
inline
1250  { // return iterator for beginning of mutable sequence
1251  return (iterator(this->_Myoff, this));
1252  }
_Mybase::iterator iterator
Definition: deque:941
template<class _Ty, class _Alloc = allocator<_Ty>>
const_iterator deque< _Ty, _Alloc >::begin ( ) const
inline
1255  { // return iterator for beginning of nonmutable sequence
1256  return (const_iterator(this->_Myoff, this));
1257  }
_Mybase::const_iterator const_iterator
Definition: deque:942
template<class _Ty, class _Alloc = allocator<_Ty>>
const_iterator deque< _Ty, _Alloc >::cbegin ( ) const
inline
1295  { // return iterator for beginning of nonmutable sequence
1296  return (((const _Myt *)this)->begin());
1297  }
deque< _Ty, _Alloc > _Myt
Definition: deque:924
iterator begin() _NOEXCEPT
Definition: deque:1249
template<class _Ty, class _Alloc = allocator<_Ty>>
const_iterator deque< _Ty, _Alloc >::cend ( ) const
inline
1300  { // return iterator for end of nonmutable sequence
1301  return (((const _Myt *)this)->end());
1302  }
iterator end() _NOEXCEPT
Definition: deque:1259
deque< _Ty, _Alloc > _Myt
Definition: deque:924
template<class _Ty, class _Alloc = allocator<_Ty>>
void deque< _Ty, _Alloc >::clear ( )
inline
1642  { // erase all
1643  _Tidy();
1644  }
void _Tidy()
Definition: deque:1826
template<class _Ty, class _Alloc = allocator<_Ty>>
const_reverse_iterator deque< _Ty, _Alloc >::crbegin ( ) const
inline
1305  { // return iterator for beginning of reversed nonmutable sequence
1306  return (((const _Myt *)this)->rbegin());
1307  }
deque< _Ty, _Alloc > _Myt
Definition: deque:924
reverse_iterator rbegin() _NOEXCEPT
Definition: deque:1274
template<class _Ty, class _Alloc = allocator<_Ty>>
const_reverse_iterator deque< _Ty, _Alloc >::crend ( ) const
inline
1310  { // return iterator for end of reversed nonmutable sequence
1311  return (((const _Myt *)this)->rend());
1312  }
deque< _Ty, _Alloc > _Myt
Definition: deque:924
reverse_iterator rend() _NOEXCEPT
Definition: deque:1284
template<class _Ty, class _Alloc = allocator<_Ty>>
template<class... _Valty>
iterator deque< _Ty, _Alloc >::emplace ( const_iterator  _Where,
_Valty &&...  _Val 
)
inline
1167  { // insert element at _Where
1168  size_type _Off = _Where - begin();
1169 
1170  #if _ITERATOR_DEBUG_LEVEL == 2
1171  if (this->_Mysize < _Off)
1172  _DEBUG_ERROR("deque emplace iterator outside range");
1173  #endif /* _ITERATOR_DEBUG_LEVEL == 2 */
1174 
1175  if (_Off <= this->_Mysize / 2)
1176  { // closer to front, push to front then rotate
1177  emplace_front(_STD forward<_Valty>(_Val)...);
1178  _STD rotate(begin(), begin() + 1, begin() + 1 + _Off);
1179  }
1180  else
1181  { // closer to back, push to back then rotate
1182  emplace_back(_STD forward<_Valty>(_Val)...);
1183  _STD rotate(begin() + _Off, end() - 1, end());
1184  }
1185  return (begin() + _Off);
1186  }
iterator end() _NOEXCEPT
Definition: deque:1259
_FwdIt rotate(_FwdIt _First, _FwdIt _Mid, _FwdIt _Last)
Definition: xutility:3239
iterator begin() _NOEXCEPT
Definition: deque:1249
_Mybase::size_type size_type
Definition: deque:934
void emplace_back(_Valty &&..._Val)
Definition: deque:1155
#define _DEBUG_ERROR(mesg)
Definition: xutility:32
void emplace_front(_Valty &&..._Val)
Definition: deque:1144
_FwdIt const _Ty _Val
Definition: algorithm:1938
template<class _Ty, class _Alloc = allocator<_Ty>>
template<class... _Valty>
void deque< _Ty, _Alloc >::emplace_back ( _Valty &&...  _Val)
inline
1156  { // insert element at end
1157  this->_Orphan_all();
1159  this->_Getal().construct(
1160  this->_Map[_Block] + _Newoff % _DEQUESIZ,
1161  _STD forward<_Valty>(_Val)...);
1163  }
#define _DEQUESIZ
Definition: deque:19
#define _PUSH_BACK_BEGIN
Definition: deque:1050
void _Orphan_all()
Definition: xutility:213
_FwdIt const _Ty _Val
Definition: algorithm:1938
#define _PUSH_BACK_END
Definition: deque:1060
template<class _Ty, class _Alloc = allocator<_Ty>>
template<class... _Valty>
void deque< _Ty, _Alloc >::emplace_front ( _Valty &&...  _Val)
inline
1145  { // insert element at beginning
1146  this->_Orphan_all();
1148  this->_Getal().construct(
1149  this->_Map[_Block] + _Newoff % _DEQUESIZ,
1150  _STD forward<_Valty>(_Val)...);
1152  }
#define _PUSH_FRONT_BEGIN
Definition: deque:1035
#define _PUSH_FRONT_END
Definition: deque:1046
#define _DEQUESIZ
Definition: deque:19
void _Orphan_all()
Definition: xutility:213
_FwdIt const _Ty _Val
Definition: algorithm:1938
template<class _Ty, class _Alloc = allocator<_Ty>>
bool deque< _Ty, _Alloc >::empty ( ) const
inline
1361  { // test if sequence is empty
1362  return (this->_Mysize == 0);
1363  }
template<class _Ty, class _Alloc = allocator<_Ty>>
iterator deque< _Ty, _Alloc >::end ( )
inline
1260  { // return iterator for end of mutable sequence
1261  return (iterator(this->_Myoff + this->_Mysize, this));
1262  }
_Mybase::iterator iterator
Definition: deque:941
template<class _Ty, class _Alloc = allocator<_Ty>>
const_iterator deque< _Ty, _Alloc >::end ( ) const
inline
1265  { // return iterator for end of nonmutable sequence
1266  return (const_iterator(this->_Myoff + this->_Mysize, this));
1267  }
_Mybase::const_iterator const_iterator
Definition: deque:942
template<class _Ty, class _Alloc = allocator<_Ty>>
iterator deque< _Ty, _Alloc >::erase ( const_iterator  _Where)
inline
1595  { // erase element at _Where
1596  return (erase(_Where, _Where + 1));
1597  }
iterator erase(const_iterator _Where)
Definition: deque:1594
template<class _Ty, class _Alloc = allocator<_Ty>>
iterator deque< _Ty, _Alloc >::erase ( const_iterator  _First_arg,
const_iterator  _Last_arg 
)
inline
1601  { // erase [_First, _Last)
1602  iterator _First = _Make_iter(_First_arg);
1603  iterator _Last = _Make_iter(_Last_arg);
1604 
1605  #if _ITERATOR_DEBUG_LEVEL == 2
1606  if (_Last < _First
1607  || _First < begin() || end() < _Last)
1608  _DEBUG_ERROR("deque erase iterator outside range");
1609  _DEBUG_RANGE(_First, _Last);
1610 
1611  size_type _Off = _First - begin();
1612  size_type _Count = _Last - _First;
1613  bool _Moved = 0 < _Off && _Off + _Count < this->_Mysize;
1614 
1615  #else /* _ITERATOR_DEBUG_LEVEL == 2 */
1616  size_type _Off = _First - begin();
1617  size_type _Count = _Last - _First;
1618  #endif /* _ITERATOR_DEBUG_LEVEL == 2 */
1619 
1620  if (_Off < (size_type)(end() - _Last))
1621  { // closer to front
1622  _Move_backward(begin(), _First, _Last); // copy over hole
1623  for (; 0 < _Count; --_Count)
1624  pop_front(); // pop copied elements
1625  }
1626  else
1627  { // closer to back
1628  _Move(_Last, end(), _First); // copy over hole
1629  for (; 0 < _Count; --_Count)
1630  pop_back(); // pop copied elements
1631  }
1632 
1633  #if _ITERATOR_DEBUG_LEVEL == 2
1634  if (_Moved)
1635  this->_Orphan_all();
1636  #endif /* _ITERATOR_DEBUG_LEVEL == 2 */
1637 
1638  return (begin() + _Off);
1639  }
_BidIt2 _Move_backward(_BidIt1 _First, _BidIt1 _Last, _BidIt2 _Dest, _Nonscalar_ptr_iterator_tag)
Definition: xutility:2523
iterator end() _NOEXCEPT
Definition: deque:1259
iterator _Make_iter(const_iterator _Where) const
Definition: deque:1269
#define _DEBUG_RANGE(first, last)
Definition: xutility:467
void pop_back()
Definition: deque:1470
_OutIt _Move(_InIt _First, _InIt _Last, _OutIt _Dest, _Nonscalar_ptr_iterator_tag)
Definition: xutility:2416
Definition: xutility:337
void pop_front()
Definition: deque:1433
void _Orphan_all()
Definition: xutility:213
iterator begin() _NOEXCEPT
Definition: deque:1249
_Mybase::size_type size_type
Definition: deque:934
_Diff _Count
Definition: algorithm:1941
#define _DEBUG_ERROR(mesg)
Definition: xutility:32
_FwdIt _Last
Definition: algorithm:1936
template<class _Ty, class _Alloc = allocator<_Ty>>
reference deque< _Ty, _Alloc >::front ( )
inline
1405  { // return first element of mutable sequence
1406  return (*begin());
1407  }
iterator begin() _NOEXCEPT
Definition: deque:1249
template<class _Ty, class _Alloc = allocator<_Ty>>
const_reference deque< _Ty, _Alloc >::front ( ) const
inline
1410  { // return first element of nonmutable sequence
1411  return (*begin());
1412  }
iterator begin() _NOEXCEPT
Definition: deque:1249
template<class _Ty, class _Alloc = allocator<_Ty>>
allocator_type deque< _Ty, _Alloc >::get_allocator ( ) const
inline
1366  { // return allocator object for values
1367  return (this->_Getal());
1368  }
template<class _Ty, class _Alloc = allocator<_Ty>>
iterator deque< _Ty, _Alloc >::insert ( const_iterator  _Where,
_Ty &&  _Val 
)
inline
1139  { // insert _Val at _Where
1140  return (emplace(_Where, _STD move(_Val)));
1141  }
_OutIt move(_InIt _First, _InIt _Last, _OutIt _Dest)
Definition: xutility:2447
iterator emplace(const_iterator _Where, _Valty &&..._Val)
Definition: deque:1166
_FwdIt const _Ty _Val
Definition: algorithm:1938
template<class _Ty, class _Alloc = allocator<_Ty>>
iterator deque< _Ty, _Alloc >::insert ( const_iterator  _Where,
_XSTD initializer_list< value_type _Ilist 
)
inline
1209  { // insert initializer_list
1210  return (insert(_Where, _Ilist.begin(), _Ilist.end()));
1211  }
iterator insert(const_iterator _Where, _Ty &&_Val)
Definition: deque:1138
template<class _Ty, class _Alloc = allocator<_Ty>>
iterator deque< _Ty, _Alloc >::insert ( const_iterator  _Where,
const value_type _Val 
)
inline
1515  { // insert _Val at _Where
1516  size_type _Off = _Where - begin();
1517 
1518  #if _ITERATOR_DEBUG_LEVEL == 2
1519  if (this->_Mysize < _Off)
1520  _DEBUG_ERROR("deque insert iterator outside range");
1521  #endif /* _ITERATOR_DEBUG_LEVEL == 2 */
1522 
1523  if (_Off <= this->_Mysize / 2)
1524  { // closer to front, push to front then copy
1525  push_front(_Val);
1526  _STD rotate(begin(), begin() + 1, begin() + 1 + _Off);
1527  }
1528  else
1529  { // closer to back, push to back then copy
1530  push_back(_Val);
1531  _STD rotate(begin() + _Off, end() - 1, end());
1532  }
1533  return (begin() + _Off);
1534  }
iterator end() _NOEXCEPT
Definition: deque:1259
void push_front(value_type &&_Val)
Definition: deque:1118
void push_back(value_type &&_Val)
Definition: deque:1128
_FwdIt rotate(_FwdIt _First, _FwdIt _Mid, _FwdIt _Last)
Definition: xutility:3239
iterator begin() _NOEXCEPT
Definition: deque:1249
_Mybase::size_type size_type
Definition: deque:934
#define _DEBUG_ERROR(mesg)
Definition: xutility:32
_FwdIt const _Ty _Val
Definition: algorithm:1938
template<class _Ty, class _Alloc = allocator<_Ty>>
iterator deque< _Ty, _Alloc >::insert ( const_iterator  _Where,
size_type  _Count,
const value_type _Val 
)
inline
1538  { // insert _Count * _Val at _Where
1539  size_type _Off = _Where - begin();
1540  _Insert_n(_Where, _Count, _Val);
1541  return (begin() + _Off);
1542  }
iterator begin() _NOEXCEPT
Definition: deque:1249
void _Insert_n(const_iterator _Where, size_type _Count, const value_type &_Val)
Definition: deque:1680
_Mybase::size_type size_type
Definition: deque:934
_Diff _Count
Definition: algorithm:1941
_FwdIt const _Ty _Val
Definition: algorithm:1938
template<class _Ty, class _Alloc = allocator<_Ty>>
template<class _Iter >
enable_if<_Is_iterator<_Iter>::value, iterator>::type deque< _Ty, _Alloc >::insert ( const_iterator  _Where,
_Iter  _First,
_Iter  _Last 
)
inline
1548  { // insert [_First, _Last) at _Where, input iterators
1549  size_type _Off = _Where - begin();
1550 
1551  #if _ITERATOR_DEBUG_LEVEL == 2
1552  if (this->_Mysize < _Off)
1553  _DEBUG_ERROR("deque insert iterator outside range");
1554  _DEBUG_RANGE(_First, _Last);
1555  #endif /* _ITERATOR_DEBUG_LEVEL == 2 */
1556 
1557  size_type _Oldsize = this->_Mysize;
1558 
1559  if (_First == _Last)
1560  ;
1561  else if (_Off <= this->_Mysize / 2)
1562  { // closer to front, push to front then rotate
1563  _TRY_BEGIN
1564  for (; _First != _Last; ++_First)
1565  push_front(*_First); // prepend flipped
1566 
1567  _CATCH_ALL
1568  for (; _Oldsize < this->_Mysize; )
1569  pop_front(); // restore old size, at least
1570  _RERAISE;
1571  _CATCH_END
1572 
1573  size_type _Num = this->_Mysize - _Oldsize;
1574  _STD reverse(begin(), begin() + _Num); // flip new stuff in place
1575  _STD rotate(begin(), begin() + _Num, begin() + _Num + _Off);
1576  }
1577  else
1578  { // closer to back
1579  _TRY_BEGIN
1580  for (; _First != _Last; ++_First)
1581  push_back(*_First); // append
1582 
1583  _CATCH_ALL
1584  for (; _Oldsize < this->_Mysize; )
1585  pop_back(); // restore old size, at least
1586  _RERAISE;
1587  _CATCH_END
1588 
1589  _STD rotate(begin() + _Off, begin() + _Oldsize, end());
1590  }
1591  return (begin() + _Off);
1592  }
iterator end() _NOEXCEPT
Definition: deque:1259
#define _DEBUG_RANGE(first, last)
Definition: xutility:467
void pop_back()
Definition: deque:1470
void push_front(value_type &&_Val)
Definition: deque:1118
#define _TRY_BEGIN
Definition: xstddef:60
#define _CATCH_END
Definition: xstddef:63
void pop_front()
Definition: deque:1433
void push_back(value_type &&_Val)
Definition: deque:1128
_FwdIt rotate(_FwdIt _First, _FwdIt _Mid, _FwdIt _Last)
Definition: xutility:3239
iterator begin() _NOEXCEPT
Definition: deque:1249
#define _CATCH_ALL
Definition: xstddef:62
_Mybase::size_type size_type
Definition: deque:934
void reverse(_BidIt _First, _BidIt _Last)
Definition: xutility:3165
#define _DEBUG_ERROR(mesg)
Definition: xutility:32
#define _RERAISE
Definition: xstddef:74
_FwdIt _Last
Definition: algorithm:1936
template<class _Ty, class _Alloc = allocator<_Ty>>
size_type deque< _Ty, _Alloc >::max_size ( ) const
inline
1356  { // return maximum possible length of sequence
1357  return (this->_Getal().max_size());
1358  }
size_type max_size() const _NOEXCEPT
Definition: deque:1355
template<class _Ty, class _Alloc = allocator<_Ty>>
_Myt& deque< _Ty, _Alloc >::operator= ( _Myt &&  _Right)
inline
1076  { // assign by moving _Right
1077  if (this != &_Right)
1078  { // different, assign it
1079  _Tidy();
1080  if (_Alty::propagate_on_container_move_assignment::value
1081  && this->_Getal() != _Right._Getal())
1082  this->_Change_alloc(_Right._Getal());
1083  _Assign_rv(_STD forward<_Myt>(_Right));
1084  }
1085  return (*this);
1086  }
void _Assign_rv(_Myt &&_Right, true_type)
Definition: deque:1088
void _Tidy()
Definition: deque:1826
const _Ty & _Right
Definition: algorithm:4087
template<class _Ty, class _Alloc = allocator<_Ty>>
_Myt& deque< _Ty, _Alloc >::operator= ( _XSTD initializer_list< value_type _Ilist)
inline
1197  { // assign initializer_list
1198  assign(_Ilist.begin(), _Ilist.end());
1199  return (*this);
1200  }
void assign(_XSTD initializer_list< value_type > _Ilist)
Definition: deque:1202
template<class _Ty, class _Alloc = allocator<_Ty>>
_Myt& deque< _Ty, _Alloc >::operator= ( const _Myt _Right)
inline
1219  { // assign _Right
1220  if (this != &_Right)
1221  { // different, assign it
1222  if (this->_Getal() != _Right._Getal()
1223  && _Alty::propagate_on_container_copy_assignment::value)
1224  { // change allocator before copying
1225  _Tidy();
1226  this->_Change_alloc(_Right._Getal());
1227  }
1228 
1229  this->_Orphan_all();
1230 
1231  if (_Right._Mysize == 0)
1232  clear();
1233  else if (_Right._Mysize <= this->_Mysize)
1234  { // enough elements, copy new and destroy old
1235  iterator _Mid = _STD copy(_Right.begin(), _Right.end(),
1236  begin());
1237  erase(_Mid, end());
1238  }
1239  else
1240  { // new sequence longer, copy and construct new
1241  const_iterator _Mid = _Right.begin() + this->_Mysize;
1242  _STD copy(_Right.begin(), _Mid, begin());
1243  insert(end(), _Mid, _Right.end());
1244  }
1245  }
1246  return (*this);
1247  }
iterator erase(const_iterator _Where)
Definition: deque:1594
iterator end() _NOEXCEPT
Definition: deque:1259
_OutIt copy(_InIt _First, _InIt _Last, _OutIt _Dest)
Definition: xutility:2072
Definition: xutility:337
_Mybase::const_iterator const_iterator
Definition: deque:942
void clear() _NOEXCEPT
Definition: deque:1641
void _Orphan_all()
Definition: xutility:213
iterator begin() _NOEXCEPT
Definition: deque:1249
iterator insert(const_iterator _Where, _Ty &&_Val)
Definition: deque:1138
void _Tidy()
Definition: deque:1826
const _Ty & _Right
Definition: algorithm:4087
template<class _Ty, class _Alloc = allocator<_Ty>>
const_reference deque< _Ty, _Alloc >::operator[] ( size_type  _Pos) const
inline
1385  { // subscript nonmutable sequence
1386  #if _ITERATOR_DEBUG_LEVEL == 2
1387  if (this->_Mysize <= _Pos)
1388  _DEBUG_ERROR("deque subscript out of range");
1389  #endif /* _ITERATOR_DEBUG_LEVEL == 2 */
1390 
1391  return (*(begin() + _Pos));
1392  }
iterator begin() _NOEXCEPT
Definition: deque:1249
#define _DEBUG_ERROR(mesg)
Definition: xutility:32
template<class _Ty, class _Alloc = allocator<_Ty>>
reference deque< _Ty, _Alloc >::operator[] ( size_type  _Pos)
inline
1395  { // subscript mutable sequence
1396  #if _ITERATOR_DEBUG_LEVEL == 2
1397  if (this->_Mysize <= _Pos)
1398  _DEBUG_ERROR("deque subscript out of range");
1399  #endif /* _ITERATOR_DEBUG_LEVEL == 2 */
1400 
1401  return (*(begin() + _Pos));
1402  }
iterator begin() _NOEXCEPT
Definition: deque:1249
#define _DEBUG_ERROR(mesg)
Definition: xutility:32
template<class _Ty, class _Alloc = allocator<_Ty>>
void deque< _Ty, _Alloc >::pop_back ( )
inline
1471  { // erase element at end
1472  #if _ITERATOR_DEBUG_LEVEL == 2
1473  if (empty())
1474  _DEBUG_ERROR("deque empty before pop");
1475  else
1476  { // something to erase, do it
1477  size_type _Newoff = this->_Myoff + this->_Mysize - 1;
1478  _Orphan_off(_Newoff);
1479  size_type _Block = this->_Getblock(_Newoff);
1480  this->_Getal().destroy(
1481  this->_Map[_Block] + _Newoff % _DEQUESIZ);
1482  if (--this->_Mysize == 0)
1483  this->_Myoff = 0;
1484  }
1485 
1486  #else /* _ITERATOR_DEBUG_LEVEL == 2 */
1487  size_type _Newoff = this->_Myoff + this->_Mysize - 1;
1488  size_type _Block = this->_Getblock(_Newoff);
1489  this->_Getal().destroy(
1490  this->_Map[_Block] + _Newoff % _DEQUESIZ);
1491  if (--this->_Mysize == 0)
1492  this->_Myoff = 0;
1493  #endif /* _ITERATOR_DEBUG_LEVEL == 2 */
1494  }
bool empty() const _NOEXCEPT
Definition: deque:1360
#define _DEQUESIZ
Definition: deque:19
size_type _Getblock(size_type _Off) const
Definition: deque:779
_Mybase::size_type size_type
Definition: deque:934
#define _DEBUG_ERROR(mesg)
Definition: xutility:32
template<class _Ty, class _Alloc = allocator<_Ty>>
void deque< _Ty, _Alloc >::pop_front ( )
inline
1434  { // erase element at beginning
1435  #if _ITERATOR_DEBUG_LEVEL == 2
1436  if (empty())
1437  _DEBUG_ERROR("deque empty before pop");
1438  else
1439  { // something to erase, do it
1440  _Orphan_off(this->_Myoff);
1441  size_type _Block = this->_Getblock(this->_Myoff);
1442  this->_Getal().destroy(
1443  this->_Map[_Block] + this->_Myoff % _DEQUESIZ);
1444  if (--this->_Mysize == 0)
1445  this->_Myoff = 0;
1446  else
1447  ++this->_Myoff;
1448  }
1449 
1450  #else /* _ITERATOR_DEBUG_LEVEL == 2 */
1451  size_type _Block = this->_Getblock(this->_Myoff);
1452  this->_Getal().destroy(
1453  this->_Map[_Block] + this->_Myoff % _DEQUESIZ);
1454  if (--this->_Mysize == 0)
1455  this->_Myoff = 0;
1456  else
1457  ++this->_Myoff;
1458  #endif /* _ITERATOR_DEBUG_LEVEL == 2 */
1459  }
bool empty() const _NOEXCEPT
Definition: deque:1360
#define _DEQUESIZ
Definition: deque:19
size_type _Getblock(size_type _Off) const
Definition: deque:779
_Mybase::size_type size_type
Definition: deque:934
#define _DEBUG_ERROR(mesg)
Definition: xutility:32
template<class _Ty, class _Alloc = allocator<_Ty>>
void deque< _Ty, _Alloc >::push_back ( value_type &&  _Val)
inline
1129  { // insert element at end
1130  this->_Orphan_all();
1132  this->_Getal().construct(
1133  this->_Map[_Block] + _Newoff % _DEQUESIZ,
1134  _STD forward<value_type>(_Val));
1136  }
#define _DEQUESIZ
Definition: deque:19
#define _PUSH_BACK_BEGIN
Definition: deque:1050
void _Orphan_all()
Definition: xutility:213
_FwdIt const _Ty _Val
Definition: algorithm:1938
#define _PUSH_BACK_END
Definition: deque:1060
template<class _Ty, class _Alloc = allocator<_Ty>>
void deque< _Ty, _Alloc >::push_back ( const value_type _Val)
inline
1462  { // insert element at end
1463  this->_Orphan_all();
1465  this->_Getal().construct(
1466  this->_Map[_Block] + _Newoff % _DEQUESIZ, _Val);
1468  }
#define _DEQUESIZ
Definition: deque:19
#define _PUSH_BACK_BEGIN
Definition: deque:1050
void _Orphan_all()
Definition: xutility:213
_FwdIt const _Ty _Val
Definition: algorithm:1938
#define _PUSH_BACK_END
Definition: deque:1060
template<class _Ty, class _Alloc = allocator<_Ty>>
void deque< _Ty, _Alloc >::push_front ( value_type &&  _Val)
inline
1119  { // insert element at beginning
1120  this->_Orphan_all();
1122  this->_Getal().construct(
1123  this->_Map[_Block] + _Newoff % _DEQUESIZ,
1124  _STD forward<value_type>(_Val));
1126  }
#define _PUSH_FRONT_BEGIN
Definition: deque:1035
#define _PUSH_FRONT_END
Definition: deque:1046
#define _DEQUESIZ
Definition: deque:19
void _Orphan_all()
Definition: xutility:213
_FwdIt const _Ty _Val
Definition: algorithm:1938
template<class _Ty, class _Alloc = allocator<_Ty>>
void deque< _Ty, _Alloc >::push_front ( const value_type _Val)
inline
1425  { // insert element at beginning
1426  this->_Orphan_all();
1428  this->_Getal().construct(
1429  this->_Map[_Block] + _Newoff % _DEQUESIZ, _Val);
1431  }
#define _PUSH_FRONT_BEGIN
Definition: deque:1035
#define _PUSH_FRONT_END
Definition: deque:1046
#define _DEQUESIZ
Definition: deque:19
void _Orphan_all()
Definition: xutility:213
_FwdIt const _Ty _Val
Definition: algorithm:1938
template<class _Ty, class _Alloc = allocator<_Ty>>
reverse_iterator deque< _Ty, _Alloc >::rbegin ( )
inline
1275  { // return iterator for beginning of reversed mutable sequence
1276  return (reverse_iterator(end()));
1277  }
iterator end() _NOEXCEPT
Definition: deque:1259
_STD reverse_iterator< iterator > reverse_iterator
Definition: deque:944
template<class _Ty, class _Alloc = allocator<_Ty>>
const_reverse_iterator deque< _Ty, _Alloc >::rbegin ( ) const
inline
1280  { // return iterator for beginning of reversed nonmutable sequence
1281  return (const_reverse_iterator(end()));
1282  }
iterator end() _NOEXCEPT
Definition: deque:1259
_STD reverse_iterator< const_iterator > const_reverse_iterator
Definition: deque:945
template<class _Ty, class _Alloc = allocator<_Ty>>
reverse_iterator deque< _Ty, _Alloc >::rend ( )
inline
1285  { // return iterator for end of reversed mutable sequence
1286  return (reverse_iterator(begin()));
1287  }
_STD reverse_iterator< iterator > reverse_iterator
Definition: deque:944
iterator begin() _NOEXCEPT
Definition: deque:1249
template<class _Ty, class _Alloc = allocator<_Ty>>
const_reverse_iterator deque< _Ty, _Alloc >::rend ( ) const
inline
1290  { // return iterator for end of reversed nonmutable sequence
1291  return (const_reverse_iterator(begin()));
1292  }
iterator begin() _NOEXCEPT
Definition: deque:1249
_STD reverse_iterator< const_iterator > const_reverse_iterator
Definition: deque:945
template<class _Ty, class _Alloc = allocator<_Ty>>
void deque< _Ty, _Alloc >::resize ( size_type  _Newsize)
inline
1334  { // determine new length, padding as needed
1335  while (this->_Mysize < _Newsize)
1336  emplace_back();
1337 
1338  while (_Newsize < this->_Mysize)
1339  pop_back();
1340  }
void pop_back()
Definition: deque:1470
void emplace_back(_Valty &&..._Val)
Definition: deque:1155
template<class _Ty, class _Alloc = allocator<_Ty>>
void deque< _Ty, _Alloc >::resize ( size_type  _Newsize,
const value_type _Val 
)
inline
1343  { // determine new length, padding with _Val elements as needed
1344  while (this->_Mysize < _Newsize)
1345  push_back(_Val);
1346  while (_Newsize < this->_Mysize)
1347  pop_back();
1348  }
void pop_back()
Definition: deque:1470
void push_back(value_type &&_Val)
Definition: deque:1128
_FwdIt const _Ty _Val
Definition: algorithm:1938
template<class _Ty, class _Alloc = allocator<_Ty>>
void deque< _Ty, _Alloc >::shrink_to_fit ( )
inline
1315  { // reduce capacity
1316  size_type _Oldcapacity = _DEQUESIZ * this->_Mapsize;
1317  size_type _Newcapacity = _Oldcapacity / 2;
1318 
1319  if (_Newcapacity < _DEQUESIZ * _DEQUEMAPSIZ)
1320  _Newcapacity = _DEQUESIZ * _DEQUEMAPSIZ;
1321 
1322  if ((empty() && 0 < this->_Mapsize)
1323  || (!empty()
1324  && size() <= _Newcapacity
1325  && _Newcapacity < _Oldcapacity))
1326  { // worth shrinking, do it
1329  swap(_Tmp);
1330  }
1331  }
iterator end() _NOEXCEPT
Definition: deque:1259
size_type size() const _NOEXCEPT
Definition: deque:1350
bool empty() const _NOEXCEPT
Definition: deque:1360
#define _DEQUEMAPSIZ
Definition: deque:18
deque< _Ty, _Alloc > _Myt
Definition: deque:924
#define _DEQUESIZ
Definition: deque:19
iterator begin() _NOEXCEPT
Definition: deque:1249
void swap(_Myt &_Right)
Definition: deque:1646
_Mybase::size_type size_type
Definition: deque:934
move_iterator< _RanIt > make_move_iterator(_RanIt _Iter)
Definition: xutility:2033
template<class _Ty, class _Alloc = allocator<_Ty>>
size_type deque< _Ty, _Alloc >::size ( ) const
inline
1351  { // return length of sequence
1352  return (this->_Mysize);
1353  }
template<class _Ty, class _Alloc = allocator<_Ty>>
void deque< _Ty, _Alloc >::swap ( _Myt _Right)
inline
1647  { // exchange contents with _Right
1648  if (this == &_Right)
1649  ; // same object, do nothing
1650  else if (this->_Getal() == _Right._Getal())
1651  { // same allocator, swap control information
1652  this->_Swap_all(_Right);
1653  _Swap_adl(this->_Map, _Right._Map);
1654  _STD swap(this->_Mapsize, _Right._Mapsize);
1655  _STD swap(this->_Myoff, _Right._Myoff);
1656  _STD swap(this->_Mysize, _Right._Mysize);
1657  }
1658 
1659  else if (_Alty::propagate_on_container_swap::value)
1660  { // swap allocators and control information
1661  this->_Swap_alloc(_Right);
1662  _Swap_adl(this->_Map, _Right._Map);
1663  _STD swap(this->_Mapsize, _Right._Mapsize);
1664  _STD swap(this->_Myoff, _Right._Myoff);
1665  _STD swap(this->_Mysize, _Right._Mysize);
1666  }
1667  else
1668  { // containers are incompatible
1669  #if _ITERATOR_DEBUG_LEVEL == 2
1670  _DEBUG_ERROR("deque containers incompatible for swap");
1671 
1672  #else /* ITERATOR_DEBUG_LEVEL == 2 */
1673  _XSTD terminate();
1674  #endif /* ITERATOR_DEBUG_LEVEL == 2 */
1675  }
1676 
1677  }
void _Swap_all(_Container_base12 &)
Definition: xutility:228
void __CRTDECL terminate()
Definition: exception:303
#define _XSTD
Definition: xstddef:20
void swap(_Myt &_Right)
Definition: deque:1646
#define _DEBUG_ERROR(mesg)
Definition: xutility:32
const _Ty & _Right
Definition: algorithm:4087

Member Data Documentation

template<class _Ty, class _Alloc = allocator<_Ty>>
const int deque< _Ty, _Alloc >::_EEM_DS = _DEQUESIZ
static

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