list.hpp 54 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright Ion Gaztanaga 2005-2015. Distributed under the Boost
  4. // Software License, Version 1.0. (See accompanying file
  5. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. // See http://www.boost.org/libs/container for documentation.
  8. //
  9. //////////////////////////////////////////////////////////////////////////////
  10. #ifndef BOOST_CONTAINER_LIST_HPP
  11. #define BOOST_CONTAINER_LIST_HPP
  12. #ifndef BOOST_CONFIG_HPP
  13. # include <boost/config.hpp>
  14. #endif
  15. #if defined(BOOST_HAS_PRAGMA_ONCE)
  16. # pragma once
  17. #endif
  18. #include <boost/container/detail/config_begin.hpp>
  19. #include <boost/container/detail/workaround.hpp>
  20. // container
  21. #include <boost/container/container_fwd.hpp>
  22. #include <boost/container/new_allocator.hpp> //new_allocator
  23. #include <boost/container/throw_exception.hpp>
  24. // container/detail
  25. #include <boost/container/detail/algorithm.hpp>
  26. #include <boost/container/detail/compare_functors.hpp>
  27. #include <boost/container/detail/iterator.hpp>
  28. #include <boost/container/detail/iterators.hpp>
  29. #include <boost/container/detail/mpl.hpp>
  30. #include <boost/container/detail/node_alloc_holder.hpp>
  31. #include <boost/container/detail/version_type.hpp>
  32. // move
  33. #include <boost/move/utility_core.hpp>
  34. #include <boost/move/iterator.hpp>
  35. #include <boost/move/traits.hpp>
  36. // move/detail
  37. #if defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
  38. # include <boost/move/detail/fwd_macros.hpp>
  39. #endif
  40. #include <boost/move/detail/move_helpers.hpp>
  41. // intrusive
  42. #include <boost/intrusive/pointer_traits.hpp>
  43. #include <boost/intrusive/list.hpp>
  44. // other
  45. #include <boost/assert.hpp>
  46. // std
  47. #if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
  48. #include <initializer_list>
  49. #endif
  50. namespace boost {
  51. namespace container {
  52. #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
  53. namespace container_detail {
  54. template<class VoidPointer>
  55. struct list_hook
  56. {
  57. typedef typename container_detail::bi::make_list_base_hook
  58. <container_detail::bi::void_pointer<VoidPointer>, container_detail::bi::link_mode<container_detail::bi::normal_link> >::type type;
  59. };
  60. template <class T, class VoidPointer>
  61. struct list_node
  62. : public list_hook<VoidPointer>::type
  63. {
  64. private:
  65. list_node();
  66. public:
  67. typedef T value_type;
  68. typedef typename list_hook<VoidPointer>::type hook_type;
  69. T m_data;
  70. T &get_data()
  71. { return this->m_data; }
  72. const T &get_data() const
  73. { return this->m_data; }
  74. };
  75. template <class T, class VoidPointer>
  76. struct iiterator_node_value_type< list_node<T,VoidPointer> > {
  77. typedef T type;
  78. };
  79. template<class Allocator>
  80. struct intrusive_list_type
  81. {
  82. typedef boost::container::allocator_traits<Allocator> allocator_traits_type;
  83. typedef typename allocator_traits_type::value_type value_type;
  84. typedef typename boost::intrusive::pointer_traits
  85. <typename allocator_traits_type::pointer>::template
  86. rebind_pointer<void>::type
  87. void_pointer;
  88. typedef typename container_detail::list_node
  89. <value_type, void_pointer> node_type;
  90. typedef typename container_detail::bi::make_list
  91. < node_type
  92. , container_detail::bi::base_hook<typename list_hook<void_pointer>::type>
  93. , container_detail::bi::constant_time_size<true>
  94. , container_detail::bi::size_type
  95. <typename allocator_traits_type::size_type>
  96. >::type container_type;
  97. typedef container_type type ;
  98. };
  99. } //namespace container_detail {
  100. #endif //#ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
  101. //! A list is a doubly linked list. That is, it is a Sequence that supports both
  102. //! forward and backward traversal, and (amortized) constant time insertion and
  103. //! removal of elements at the beginning or the end, or in the middle. Lists have
  104. //! the important property that insertion and splicing do not invalidate iterators
  105. //! to list elements, and that even removal invalidates only the iterators that point
  106. //! to the elements that are removed. The ordering of iterators may be changed
  107. //! (that is, list<T>::iterator might have a different predecessor or successor
  108. //! after a list operation than it did before), but the iterators themselves will
  109. //! not be invalidated or made to point to different elements unless that invalidation
  110. //! or mutation is explicit.
  111. //!
  112. //! \tparam T The type of object that is stored in the list
  113. //! \tparam Allocator The allocator used for all internal memory management
  114. #ifdef BOOST_CONTAINER_DOXYGEN_INVOKED
  115. template <class T, class Allocator = new_allocator<T> >
  116. #else
  117. template <class T, class Allocator>
  118. #endif
  119. class list
  120. : protected container_detail::node_alloc_holder
  121. <Allocator, typename container_detail::intrusive_list_type<Allocator>::type>
  122. {
  123. #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
  124. typedef typename
  125. container_detail::intrusive_list_type<Allocator>::type Icont;
  126. typedef container_detail::node_alloc_holder<Allocator, Icont> AllocHolder;
  127. typedef typename AllocHolder::NodePtr NodePtr;
  128. typedef typename AllocHolder::NodeAlloc NodeAlloc;
  129. typedef typename AllocHolder::ValAlloc ValAlloc;
  130. typedef typename AllocHolder::Node Node;
  131. typedef container_detail::allocator_destroyer<NodeAlloc> Destroyer;
  132. typedef typename AllocHolder::alloc_version alloc_version;
  133. typedef boost::container::allocator_traits<Allocator> allocator_traits_type;
  134. typedef boost::container::equal_to_value<Allocator> equal_to_value_type;
  135. BOOST_COPYABLE_AND_MOVABLE(list)
  136. typedef container_detail::iterator_from_iiterator<typename Icont::iterator, false> iterator_impl;
  137. typedef container_detail::iterator_from_iiterator<typename Icont::iterator, true> const_iterator_impl;
  138. #endif //#ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
  139. public:
  140. //////////////////////////////////////////////
  141. //
  142. // types
  143. //
  144. //////////////////////////////////////////////
  145. typedef T value_type;
  146. typedef typename ::boost::container::allocator_traits<Allocator>::pointer pointer;
  147. typedef typename ::boost::container::allocator_traits<Allocator>::const_pointer const_pointer;
  148. typedef typename ::boost::container::allocator_traits<Allocator>::reference reference;
  149. typedef typename ::boost::container::allocator_traits<Allocator>::const_reference const_reference;
  150. typedef typename ::boost::container::allocator_traits<Allocator>::size_type size_type;
  151. typedef typename ::boost::container::allocator_traits<Allocator>::difference_type difference_type;
  152. typedef Allocator allocator_type;
  153. typedef BOOST_CONTAINER_IMPDEF(NodeAlloc) stored_allocator_type;
  154. typedef BOOST_CONTAINER_IMPDEF(iterator_impl) iterator;
  155. typedef BOOST_CONTAINER_IMPDEF(const_iterator_impl) const_iterator;
  156. typedef BOOST_CONTAINER_IMPDEF(boost::container::reverse_iterator<iterator>) reverse_iterator;
  157. typedef BOOST_CONTAINER_IMPDEF(boost::container::reverse_iterator<const_iterator>) const_reverse_iterator;
  158. //////////////////////////////////////////////
  159. //
  160. // construct/copy/destroy
  161. //
  162. //////////////////////////////////////////////
  163. //! <b>Effects</b>: Default constructs a list.
  164. //!
  165. //! <b>Throws</b>: If allocator_type's default constructor throws.
  166. //!
  167. //! <b>Complexity</b>: Constant.
  168. list()
  169. : AllocHolder()
  170. {}
  171. //! <b>Effects</b>: Constructs a list taking the allocator as parameter.
  172. //!
  173. //! <b>Throws</b>: Nothing
  174. //!
  175. //! <b>Complexity</b>: Constant.
  176. explicit list(const allocator_type &a) BOOST_NOEXCEPT_OR_NOTHROW
  177. : AllocHolder(a)
  178. {}
  179. //! <b>Effects</b>: Constructs a list
  180. //! and inserts n value-initialized value_types.
  181. //!
  182. //! <b>Throws</b>: If allocator_type's default constructor
  183. //! throws or T's default or copy constructor throws.
  184. //!
  185. //! <b>Complexity</b>: Linear to n.
  186. explicit list(size_type n)
  187. : AllocHolder(Allocator())
  188. { this->resize(n); }
  189. //! <b>Effects</b>: Constructs a list that will use a copy of allocator a
  190. //! and inserts n copies of value.
  191. //!
  192. //! <b>Throws</b>: If allocator_type's default constructor
  193. //! throws or T's default or copy constructor throws.
  194. //!
  195. //! <b>Complexity</b>: Linear to n.
  196. list(size_type n, const allocator_type &a)
  197. : AllocHolder(a)
  198. { this->resize(n); }
  199. //! <b>Effects</b>: Constructs a list that will use a copy of allocator a
  200. //! and inserts n copies of value.
  201. //!
  202. //! <b>Throws</b>: If allocator_type's default constructor
  203. //! throws or T's default or copy constructor throws.
  204. //!
  205. //! <b>Complexity</b>: Linear to n.
  206. list(size_type n, const T& value, const Allocator& a = Allocator())
  207. : AllocHolder(a)
  208. { this->insert(this->cbegin(), n, value); }
  209. //! <b>Effects</b>: Copy constructs a list.
  210. //!
  211. //! <b>Postcondition</b>: x == *this.
  212. //!
  213. //! <b>Throws</b>: If allocator_type's default constructor throws.
  214. //!
  215. //! <b>Complexity</b>: Linear to the elements x contains.
  216. list(const list& x)
  217. : AllocHolder(x)
  218. { this->insert(this->cbegin(), x.begin(), x.end()); }
  219. //! <b>Effects</b>: Move constructor. Moves x's resources to *this.
  220. //!
  221. //! <b>Throws</b>: If allocator_type's copy constructor throws.
  222. //!
  223. //! <b>Complexity</b>: Constant.
  224. list(BOOST_RV_REF(list) x)
  225. : AllocHolder(BOOST_MOVE_BASE(AllocHolder, x))
  226. {}
  227. //! <b>Effects</b>: Copy constructs a list using the specified allocator.
  228. //!
  229. //! <b>Postcondition</b>: x == *this.
  230. //!
  231. //! <b>Throws</b>: If allocator_type's default constructor or copy constructor throws.
  232. //!
  233. //! <b>Complexity</b>: Linear to the elements x contains.
  234. list(const list& x, const allocator_type &a)
  235. : AllocHolder(a)
  236. { this->insert(this->cbegin(), x.begin(), x.end()); }
  237. //! <b>Effects</b>: Move constructor sing the specified allocator.
  238. //! Moves x's resources to *this.
  239. //!
  240. //! <b>Throws</b>: If allocation or value_type's copy constructor throws.
  241. //!
  242. //! <b>Complexity</b>: Constant if a == x.get_allocator(), linear otherwise.
  243. list(BOOST_RV_REF(list) x, const allocator_type &a)
  244. : AllocHolder(a)
  245. {
  246. if(this->node_alloc() == x.node_alloc()){
  247. this->icont().swap(x.icont());
  248. }
  249. else{
  250. this->insert(this->cbegin(), boost::make_move_iterator(x.begin()), boost::make_move_iterator(x.end()));
  251. }
  252. }
  253. //! <b>Effects</b>: Constructs a list that will use a copy of allocator a
  254. //! and inserts a copy of the range [first, last) in the list.
  255. //!
  256. //! <b>Throws</b>: If allocator_type's default constructor
  257. //! throws or T's constructor taking a dereferenced InIt throws.
  258. //!
  259. //! <b>Complexity</b>: Linear to the range [first, last).
  260. template <class InpIt>
  261. list(InpIt first, InpIt last, const Allocator &a = Allocator())
  262. : AllocHolder(a)
  263. { this->insert(this->cbegin(), first, last); }
  264. #if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
  265. //! <b>Effects</b>: Constructs a list that will use a copy of allocator a
  266. //! and inserts a copy of the range [il.begin(), il.end()) in the list.
  267. //!
  268. //! <b>Throws</b>: If allocator_type's default constructor
  269. //! throws or T's constructor taking a dereferenced
  270. //! std::initializer_list iterator throws.
  271. //!
  272. //! <b>Complexity</b>: Linear to the range [il.begin(), il.end()).
  273. list(std::initializer_list<value_type> il, const Allocator &a = Allocator())
  274. : AllocHolder(a)
  275. { this->insert(this->cbegin(), il.begin(), il.end()); }
  276. #endif
  277. //! <b>Effects</b>: Destroys the list. All stored values are destroyed
  278. //! and used memory is deallocated.
  279. //!
  280. //! <b>Throws</b>: Nothing.
  281. //!
  282. //! <b>Complexity</b>: Linear to the number of elements.
  283. ~list() BOOST_NOEXCEPT_OR_NOTHROW
  284. {} //AllocHolder clears the list
  285. //! <b>Effects</b>: Makes *this contain the same elements as x.
  286. //!
  287. //! <b>Postcondition</b>: this->size() == x.size(). *this contains a copy
  288. //! of each of x's elements.
  289. //!
  290. //! <b>Throws</b>: If memory allocation throws or T's copy constructor throws.
  291. //!
  292. //! <b>Complexity</b>: Linear to the number of elements in x.
  293. list& operator=(BOOST_COPY_ASSIGN_REF(list) x)
  294. {
  295. if (&x != this){
  296. NodeAlloc &this_alloc = this->node_alloc();
  297. const NodeAlloc &x_alloc = x.node_alloc();
  298. container_detail::bool_<allocator_traits_type::
  299. propagate_on_container_copy_assignment::value> flag;
  300. if(flag && this_alloc != x_alloc){
  301. this->clear();
  302. }
  303. this->AllocHolder::copy_assign_alloc(x);
  304. this->assign(x.begin(), x.end());
  305. }
  306. return *this;
  307. }
  308. //! <b>Effects</b>: Move assignment. All x's values are transferred to *this.
  309. //!
  310. //! <b>Postcondition</b>: x.empty(). *this contains a the elements x had
  311. //! before the function.
  312. //!
  313. //! <b>Throws</b>: If allocator_traits_type::propagate_on_container_move_assignment
  314. //! is false and (allocation throws or value_type's move constructor throws)
  315. //!
  316. //! <b>Complexity</b>: Constant if allocator_traits_type::
  317. //! propagate_on_container_move_assignment is true or
  318. //! this->get>allocator() == x.get_allocator(). Linear otherwise.
  319. list& operator=(BOOST_RV_REF(list) x)
  320. BOOST_NOEXCEPT_IF(allocator_traits_type::propagate_on_container_move_assignment::value
  321. || allocator_traits_type::is_always_equal::value)
  322. {
  323. BOOST_ASSERT(this != &x);
  324. NodeAlloc &this_alloc = this->node_alloc();
  325. NodeAlloc &x_alloc = x.node_alloc();
  326. const bool propagate_alloc = allocator_traits_type::
  327. propagate_on_container_move_assignment::value;
  328. const bool allocators_equal = this_alloc == x_alloc; (void)allocators_equal;
  329. //Resources can be transferred if both allocators are
  330. //going to be equal after this function (either propagated or already equal)
  331. if(propagate_alloc || allocators_equal){
  332. //Destroy
  333. this->clear();
  334. //Move allocator if needed
  335. this->AllocHolder::move_assign_alloc(x);
  336. //Obtain resources
  337. this->icont() = boost::move(x.icont());
  338. }
  339. //Else do a one by one move
  340. else{
  341. this->assign( boost::make_move_iterator(x.begin())
  342. , boost::make_move_iterator(x.end()));
  343. }
  344. return *this;
  345. }
  346. #if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
  347. //! <b>Effects</b>: Makes *this contain the same elements as il.
  348. //!
  349. //! <b>Postcondition</b>: this->size() == il.size(). *this contains a copy
  350. //! of each of x's elements.
  351. //!
  352. //! <b>Throws</b>: If memory allocation throws or T's copy constructor throws.
  353. //!
  354. //! <b>Complexity</b>: Linear to the number of elements in x.
  355. list& operator=(std::initializer_list<value_type> il)
  356. {
  357. assign(il.begin(), il.end());
  358. return *this;
  359. }
  360. #endif
  361. //! <b>Effects</b>: Assigns the n copies of val to *this.
  362. //!
  363. //! <b>Throws</b>: If memory allocation throws or T's copy constructor throws.
  364. //!
  365. //! <b>Complexity</b>: Linear to n.
  366. void assign(size_type n, const T& val)
  367. {
  368. typedef constant_iterator<value_type, difference_type> cvalue_iterator;
  369. return this->assign(cvalue_iterator(val, n), cvalue_iterator());
  370. }
  371. //! <b>Effects</b>: Assigns the the range [first, last) to *this.
  372. //!
  373. //! <b>Throws</b>: If memory allocation throws or
  374. //! T's constructor from dereferencing InpIt throws.
  375. //!
  376. //! <b>Complexity</b>: Linear to n.
  377. template <class InpIt>
  378. void assign(InpIt first, InpIt last
  379. #if !defined(BOOST_CONTAINER_DOXYGEN_INVOKED)
  380. , typename container_detail::disable_if_convertible<InpIt, size_type>::type * = 0
  381. #endif
  382. )
  383. {
  384. iterator first1 = this->begin();
  385. const iterator last1 = this->end();
  386. for ( ; first1 != last1 && first != last; ++first1, ++first)
  387. *first1 = *first;
  388. if (first == last)
  389. this->erase(first1, last1);
  390. else{
  391. this->insert(last1, first, last);
  392. }
  393. }
  394. #if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
  395. //! <b>Effects</b>: Assigns the the range [il.begin(), il.end()) to *this.
  396. //!
  397. //! <b>Throws</b>: If memory allocation throws or
  398. //! T's constructor from dereferencing std::initializer_list iterator throws.
  399. //!
  400. //! <b>Complexity</b>: Linear to n.
  401. void assign(std::initializer_list<value_type> il)
  402. { assign(il.begin(), il.end()); }
  403. #endif
  404. //! <b>Effects</b>: Returns a copy of the internal allocator.
  405. //!
  406. //! <b>Throws</b>: If allocator's copy constructor throws.
  407. //!
  408. //! <b>Complexity</b>: Constant.
  409. allocator_type get_allocator() const BOOST_NOEXCEPT_OR_NOTHROW
  410. { return allocator_type(this->node_alloc()); }
  411. //! <b>Effects</b>: Returns a reference to the internal allocator.
  412. //!
  413. //! <b>Throws</b>: Nothing
  414. //!
  415. //! <b>Complexity</b>: Constant.
  416. //!
  417. //! <b>Note</b>: Non-standard extension.
  418. stored_allocator_type &get_stored_allocator() BOOST_NOEXCEPT_OR_NOTHROW
  419. { return this->node_alloc(); }
  420. //! <b>Effects</b>: Returns a reference to the internal allocator.
  421. //!
  422. //! <b>Throws</b>: Nothing
  423. //!
  424. //! <b>Complexity</b>: Constant.
  425. //!
  426. //! <b>Note</b>: Non-standard extension.
  427. const stored_allocator_type &get_stored_allocator() const BOOST_NOEXCEPT_OR_NOTHROW
  428. { return this->node_alloc(); }
  429. //////////////////////////////////////////////
  430. //
  431. // iterators
  432. //
  433. //////////////////////////////////////////////
  434. //! <b>Effects</b>: Returns an iterator to the first element contained in the list.
  435. //!
  436. //! <b>Throws</b>: Nothing.
  437. //!
  438. //! <b>Complexity</b>: Constant.
  439. iterator begin() BOOST_NOEXCEPT_OR_NOTHROW
  440. { return iterator(this->icont().begin()); }
  441. //! <b>Effects</b>: Returns a const_iterator to the first element contained in the list.
  442. //!
  443. //! <b>Throws</b>: Nothing.
  444. //!
  445. //! <b>Complexity</b>: Constant.
  446. const_iterator begin() const BOOST_NOEXCEPT_OR_NOTHROW
  447. { return this->cbegin(); }
  448. //! <b>Effects</b>: Returns an iterator to the end of the list.
  449. //!
  450. //! <b>Throws</b>: Nothing.
  451. //!
  452. //! <b>Complexity</b>: Constant.
  453. iterator end() BOOST_NOEXCEPT_OR_NOTHROW
  454. { return iterator(this->icont().end()); }
  455. //! <b>Effects</b>: Returns a const_iterator to the end of the list.
  456. //!
  457. //! <b>Throws</b>: Nothing.
  458. //!
  459. //! <b>Complexity</b>: Constant.
  460. const_iterator end() const BOOST_NOEXCEPT_OR_NOTHROW
  461. { return this->cend(); }
  462. //! <b>Effects</b>: Returns a reverse_iterator pointing to the beginning
  463. //! of the reversed list.
  464. //!
  465. //! <b>Throws</b>: Nothing.
  466. //!
  467. //! <b>Complexity</b>: Constant.
  468. reverse_iterator rbegin() BOOST_NOEXCEPT_OR_NOTHROW
  469. { return reverse_iterator(end()); }
  470. //! <b>Effects</b>: Returns a const_reverse_iterator pointing to the beginning
  471. //! of the reversed list.
  472. //!
  473. //! <b>Throws</b>: Nothing.
  474. //!
  475. //! <b>Complexity</b>: Constant.
  476. const_reverse_iterator rbegin() const BOOST_NOEXCEPT_OR_NOTHROW
  477. { return this->crbegin(); }
  478. //! <b>Effects</b>: Returns a reverse_iterator pointing to the end
  479. //! of the reversed list.
  480. //!
  481. //! <b>Throws</b>: Nothing.
  482. //!
  483. //! <b>Complexity</b>: Constant.
  484. reverse_iterator rend() BOOST_NOEXCEPT_OR_NOTHROW
  485. { return reverse_iterator(begin()); }
  486. //! <b>Effects</b>: Returns a const_reverse_iterator pointing to the end
  487. //! of the reversed list.
  488. //!
  489. //! <b>Throws</b>: Nothing.
  490. //!
  491. //! <b>Complexity</b>: Constant.
  492. const_reverse_iterator rend() const BOOST_NOEXCEPT_OR_NOTHROW
  493. { return this->crend(); }
  494. //! <b>Effects</b>: Returns a const_iterator to the first element contained in the list.
  495. //!
  496. //! <b>Throws</b>: Nothing.
  497. //!
  498. //! <b>Complexity</b>: Constant.
  499. const_iterator cbegin() const BOOST_NOEXCEPT_OR_NOTHROW
  500. { return const_iterator(this->non_const_icont().begin()); }
  501. //! <b>Effects</b>: Returns a const_iterator to the end of the list.
  502. //!
  503. //! <b>Throws</b>: Nothing.
  504. //!
  505. //! <b>Complexity</b>: Constant.
  506. const_iterator cend() const BOOST_NOEXCEPT_OR_NOTHROW
  507. { return const_iterator(this->non_const_icont().end()); }
  508. //! <b>Effects</b>: Returns a const_reverse_iterator pointing to the beginning
  509. //! of the reversed list.
  510. //!
  511. //! <b>Throws</b>: Nothing.
  512. //!
  513. //! <b>Complexity</b>: Constant.
  514. const_reverse_iterator crbegin() const BOOST_NOEXCEPT_OR_NOTHROW
  515. { return const_reverse_iterator(this->cend()); }
  516. //! <b>Effects</b>: Returns a const_reverse_iterator pointing to the end
  517. //! of the reversed list.
  518. //!
  519. //! <b>Throws</b>: Nothing.
  520. //!
  521. //! <b>Complexity</b>: Constant.
  522. const_reverse_iterator crend() const BOOST_NOEXCEPT_OR_NOTHROW
  523. { return const_reverse_iterator(this->cbegin()); }
  524. //////////////////////////////////////////////
  525. //
  526. // capacity
  527. //
  528. //////////////////////////////////////////////
  529. //! <b>Effects</b>: Returns true if the list contains no elements.
  530. //!
  531. //! <b>Throws</b>: Nothing.
  532. //!
  533. //! <b>Complexity</b>: Constant.
  534. bool empty() const BOOST_NOEXCEPT_OR_NOTHROW
  535. { return !this->size(); }
  536. //! <b>Effects</b>: Returns the number of the elements contained in the list.
  537. //!
  538. //! <b>Throws</b>: Nothing.
  539. //!
  540. //! <b>Complexity</b>: Constant.
  541. size_type size() const BOOST_NOEXCEPT_OR_NOTHROW
  542. { return this->icont().size(); }
  543. //! <b>Effects</b>: Returns the largest possible size of the list.
  544. //!
  545. //! <b>Throws</b>: Nothing.
  546. //!
  547. //! <b>Complexity</b>: Constant.
  548. size_type max_size() const BOOST_NOEXCEPT_OR_NOTHROW
  549. { return AllocHolder::max_size(); }
  550. //! <b>Effects</b>: Inserts or erases elements at the end such that
  551. //! the size becomes n. New elements are value initialized.
  552. //!
  553. //! <b>Throws</b>: If memory allocation throws, or T's copy constructor throws.
  554. //!
  555. //! <b>Complexity</b>: Linear to the difference between size() and new_size.
  556. void resize(size_type new_size)
  557. {
  558. if(!priv_try_shrink(new_size)){
  559. typedef value_init_construct_iterator<value_type, difference_type> value_init_iterator;
  560. this->insert(this->cend(), value_init_iterator(new_size - this->size()), value_init_iterator());
  561. }
  562. }
  563. //! <b>Effects</b>: Inserts or erases elements at the end such that
  564. //! the size becomes n. New elements are copy constructed from x.
  565. //!
  566. //! <b>Throws</b>: If memory allocation throws, or T's copy constructor throws.
  567. //!
  568. //! <b>Complexity</b>: Linear to the difference between size() and new_size.
  569. void resize(size_type new_size, const T& x)
  570. {
  571. if(!priv_try_shrink(new_size)){
  572. this->insert(this->cend(), new_size - this->size(), x);
  573. }
  574. }
  575. //////////////////////////////////////////////
  576. //
  577. // element access
  578. //
  579. //////////////////////////////////////////////
  580. //! <b>Requires</b>: !empty()
  581. //!
  582. //! <b>Effects</b>: Returns a reference to the first element
  583. //! from the beginning of the container.
  584. //!
  585. //! <b>Throws</b>: Nothing.
  586. //!
  587. //! <b>Complexity</b>: Constant.
  588. reference front() BOOST_NOEXCEPT_OR_NOTHROW
  589. {
  590. BOOST_ASSERT(!this->empty());
  591. return *this->begin();
  592. }
  593. //! <b>Requires</b>: !empty()
  594. //!
  595. //! <b>Effects</b>: Returns a const reference to the first element
  596. //! from the beginning of the container.
  597. //!
  598. //! <b>Throws</b>: Nothing.
  599. //!
  600. //! <b>Complexity</b>: Constant.
  601. const_reference front() const BOOST_NOEXCEPT_OR_NOTHROW
  602. {
  603. BOOST_ASSERT(!this->empty());
  604. return *this->begin();
  605. }
  606. //! <b>Requires</b>: !empty()
  607. //!
  608. //! <b>Effects</b>: Returns a reference to the first element
  609. //! from the beginning of the container.
  610. //!
  611. //! <b>Throws</b>: Nothing.
  612. //!
  613. //! <b>Complexity</b>: Constant.
  614. reference back() BOOST_NOEXCEPT_OR_NOTHROW
  615. {
  616. BOOST_ASSERT(!this->empty());
  617. return *(--this->end());
  618. }
  619. //! <b>Requires</b>: !empty()
  620. //!
  621. //! <b>Effects</b>: Returns a const reference to the first element
  622. //! from the beginning of the container.
  623. //!
  624. //! <b>Throws</b>: Nothing.
  625. //!
  626. //! <b>Complexity</b>: Constant.
  627. const_reference back() const BOOST_NOEXCEPT_OR_NOTHROW
  628. {
  629. BOOST_ASSERT(!this->empty());
  630. return *(--this->end());
  631. }
  632. //////////////////////////////////////////////
  633. //
  634. // modifiers
  635. //
  636. //////////////////////////////////////////////
  637. #if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) || defined(BOOST_CONTAINER_DOXYGEN_INVOKED)
  638. //! <b>Effects</b>: Inserts an object of type T constructed with
  639. //! std::forward<Args>(args)... in the end of the list.
  640. //!
  641. //! <b>Throws</b>: If memory allocation throws or
  642. //! T's in-place constructor throws.
  643. //!
  644. //! <b>Complexity</b>: Constant
  645. template <class... Args>
  646. void emplace_back(BOOST_FWD_REF(Args)... args)
  647. { this->emplace(this->cend(), boost::forward<Args>(args)...); }
  648. //! <b>Effects</b>: Inserts an object of type T constructed with
  649. //! std::forward<Args>(args)... in the beginning of the list.
  650. //!
  651. //! <b>Throws</b>: If memory allocation throws or
  652. //! T's in-place constructor throws.
  653. //!
  654. //! <b>Complexity</b>: Constant
  655. template <class... Args>
  656. void emplace_front(BOOST_FWD_REF(Args)... args)
  657. { this->emplace(this->cbegin(), boost::forward<Args>(args)...); }
  658. //! <b>Effects</b>: Inserts an object of type T constructed with
  659. //! std::forward<Args>(args)... before p.
  660. //!
  661. //! <b>Throws</b>: If memory allocation throws or
  662. //! T's in-place constructor throws.
  663. //!
  664. //! <b>Complexity</b>: Constant
  665. template <class... Args>
  666. iterator emplace(const_iterator position, BOOST_FWD_REF(Args)... args)
  667. {
  668. BOOST_ASSERT((priv_is_linked)(position));
  669. NodePtr pnode(AllocHolder::create_node(boost::forward<Args>(args)...));
  670. return iterator(this->icont().insert(position.get(), *pnode));
  671. }
  672. #else // !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
  673. #define BOOST_CONTAINER_LIST_EMPLACE_CODE(N) \
  674. BOOST_MOVE_TMPL_LT##N BOOST_MOVE_CLASS##N BOOST_MOVE_GT##N \
  675. void emplace_back(BOOST_MOVE_UREF##N)\
  676. { this->emplace(this->cend() BOOST_MOVE_I##N BOOST_MOVE_FWD##N); }\
  677. \
  678. BOOST_MOVE_TMPL_LT##N BOOST_MOVE_CLASS##N BOOST_MOVE_GT##N \
  679. void emplace_front(BOOST_MOVE_UREF##N)\
  680. { this->emplace(this->cbegin() BOOST_MOVE_I##N BOOST_MOVE_FWD##N);}\
  681. \
  682. BOOST_MOVE_TMPL_LT##N BOOST_MOVE_CLASS##N BOOST_MOVE_GT##N \
  683. iterator emplace(const_iterator position BOOST_MOVE_I##N BOOST_MOVE_UREF##N)\
  684. {\
  685. BOOST_ASSERT(position == this->cend() || (--(++position) == position) );\
  686. NodePtr pnode (AllocHolder::create_node(BOOST_MOVE_FWD##N));\
  687. return iterator(this->icont().insert(position.get(), *pnode));\
  688. }\
  689. //
  690. BOOST_MOVE_ITERATE_0TO9(BOOST_CONTAINER_LIST_EMPLACE_CODE)
  691. #undef BOOST_CONTAINER_LIST_EMPLACE_CODE
  692. #endif // !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
  693. #if defined(BOOST_CONTAINER_DOXYGEN_INVOKED)
  694. //! <b>Effects</b>: Inserts a copy of x at the beginning of the list.
  695. //!
  696. //! <b>Throws</b>: If memory allocation throws or
  697. //! T's copy constructor throws.
  698. //!
  699. //! <b>Complexity</b>: Amortized constant time.
  700. void push_front(const T &x);
  701. //! <b>Effects</b>: Constructs a new element in the beginning of the list
  702. //! and moves the resources of x to this new element.
  703. //!
  704. //! <b>Throws</b>: If memory allocation throws.
  705. //!
  706. //! <b>Complexity</b>: Amortized constant time.
  707. void push_front(T &&x);
  708. #else
  709. BOOST_MOVE_CONVERSION_AWARE_CATCH(push_front, T, void, priv_push_front)
  710. #endif
  711. #if defined(BOOST_CONTAINER_DOXYGEN_INVOKED)
  712. //! <b>Effects</b>: Inserts a copy of x at the end of the list.
  713. //!
  714. //! <b>Throws</b>: If memory allocation throws or
  715. //! T's copy constructor throws.
  716. //!
  717. //! <b>Complexity</b>: Amortized constant time.
  718. void push_back(const T &x);
  719. //! <b>Effects</b>: Constructs a new element in the end of the list
  720. //! and moves the resources of x to this new element.
  721. //!
  722. //! <b>Throws</b>: If memory allocation throws.
  723. //!
  724. //! <b>Complexity</b>: Amortized constant time.
  725. void push_back(T &&x);
  726. #else
  727. BOOST_MOVE_CONVERSION_AWARE_CATCH(push_back, T, void, priv_push_back)
  728. #endif
  729. #if defined(BOOST_CONTAINER_DOXYGEN_INVOKED)
  730. //! <b>Requires</b>: p must be a valid iterator of *this.
  731. //!
  732. //! <b>Effects</b>: Insert a copy of x before p.
  733. //!
  734. //! <b>Returns</b>: an iterator to the inserted element.
  735. //!
  736. //! <b>Throws</b>: If memory allocation throws or x's copy constructor throws.
  737. //!
  738. //! <b>Complexity</b>: Amortized constant time.
  739. iterator insert(const_iterator p, const T &x);
  740. //! <b>Requires</b>: p must be a valid iterator of *this.
  741. //!
  742. //! <b>Effects</b>: Insert a new element before p with x's resources.
  743. //!
  744. //! <b>Returns</b>: an iterator to the inserted element.
  745. //!
  746. //! <b>Throws</b>: If memory allocation throws.
  747. //!
  748. //! <b>Complexity</b>: Amortized constant time.
  749. iterator insert(const_iterator p, T &&x);
  750. #else
  751. BOOST_MOVE_CONVERSION_AWARE_CATCH_1ARG(insert, T, iterator, priv_insert, const_iterator, const_iterator)
  752. #endif
  753. //! <b>Requires</b>: p must be a valid iterator of *this.
  754. //!
  755. //! <b>Effects</b>: Inserts n copies of x before p.
  756. //!
  757. //! <b>Returns</b>: an iterator to the first inserted element or p if n is 0.
  758. //!
  759. //! <b>Throws</b>: If memory allocation throws or T's copy constructor throws.
  760. //!
  761. //! <b>Complexity</b>: Linear to n.
  762. iterator insert(const_iterator position, size_type n, const T& x)
  763. {
  764. //range check is done by insert
  765. typedef constant_iterator<value_type, difference_type> cvalue_iterator;
  766. return this->insert(position, cvalue_iterator(x, n), cvalue_iterator());
  767. }
  768. //! <b>Requires</b>: p must be a valid iterator of *this.
  769. //!
  770. //! <b>Effects</b>: Insert a copy of the [first, last) range before p.
  771. //!
  772. //! <b>Returns</b>: an iterator to the first inserted element or p if first == last.
  773. //!
  774. //! <b>Throws</b>: If memory allocation throws, T's constructor from a
  775. //! dereferenced InpIt throws.
  776. //!
  777. //! <b>Complexity</b>: Linear to distance [first, last).
  778. template <class InpIt>
  779. iterator insert(const_iterator p, InpIt first, InpIt last
  780. #if !defined(BOOST_CONTAINER_DOXYGEN_INVOKED)
  781. , typename container_detail::enable_if_c
  782. < !container_detail::is_convertible<InpIt, size_type>::value
  783. && (container_detail::is_input_iterator<InpIt>::value
  784. || container_detail::is_same<alloc_version, version_1>::value
  785. )
  786. >::type * = 0
  787. #endif
  788. )
  789. {
  790. BOOST_ASSERT((priv_is_linked)(p));
  791. const typename Icont::iterator ipos(p.get());
  792. iterator ret_it(ipos);
  793. if(first != last){
  794. ret_it = iterator(this->icont().insert(ipos, *this->create_node_from_it(first)));
  795. ++first;
  796. }
  797. for (; first != last; ++first){
  798. this->icont().insert(ipos, *this->create_node_from_it(first));
  799. }
  800. return ret_it;
  801. }
  802. #if !defined(BOOST_CONTAINER_DOXYGEN_INVOKED)
  803. template <class FwdIt>
  804. iterator insert(const_iterator position, FwdIt first, FwdIt last
  805. , typename container_detail::enable_if_c
  806. < !container_detail::is_convertible<FwdIt, size_type>::value
  807. && !(container_detail::is_input_iterator<FwdIt>::value
  808. || container_detail::is_same<alloc_version, version_1>::value
  809. )
  810. >::type * = 0
  811. )
  812. {
  813. BOOST_ASSERT((priv_is_linked)(position));
  814. //Optimized allocation and construction
  815. insertion_functor func(this->icont(), position.get());
  816. iterator before_p(position.get());
  817. --before_p;
  818. this->allocate_many_and_construct(first, boost::container::iterator_distance(first, last), func);
  819. return ++before_p;
  820. }
  821. #endif
  822. #if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
  823. //! <b>Requires</b>: p must be a valid iterator of *this.
  824. //!
  825. //! <b>Effects</b>: Insert a copy of the [il.begin(), il.end()) range before p.
  826. //!
  827. //! <b>Returns</b>: an iterator to the first inserted element or p if if.begin() == il.end().
  828. //!
  829. //! <b>Throws</b>: If memory allocation throws, T's constructor from a
  830. //! dereferenced std::initializer_list iterator throws.
  831. //!
  832. //! <b>Complexity</b>: Linear to distance [il.begin(), il.end()).
  833. iterator insert(const_iterator p, std::initializer_list<value_type> il)
  834. {
  835. //position range check is done by insert()
  836. return insert(p, il.begin(), il.end());
  837. }
  838. #endif
  839. //! <b>Effects</b>: Removes the first element from the list.
  840. //!
  841. //! <b>Throws</b>: Nothing.
  842. //!
  843. //! <b>Complexity</b>: Amortized constant time.
  844. void pop_front() BOOST_NOEXCEPT_OR_NOTHROW
  845. {
  846. BOOST_ASSERT(!this->empty());
  847. this->erase(this->cbegin());
  848. }
  849. //! <b>Effects</b>: Removes the last element from the list.
  850. //!
  851. //! <b>Throws</b>: Nothing.
  852. //!
  853. //! <b>Complexity</b>: Amortized constant time.
  854. void pop_back() BOOST_NOEXCEPT_OR_NOTHROW
  855. {
  856. BOOST_ASSERT(!this->empty());
  857. const_iterator tmp = this->cend();
  858. this->erase(--tmp);
  859. }
  860. //! <b>Requires</b>: p must be a valid iterator of *this.
  861. //!
  862. //! <b>Effects</b>: Erases the element at p p.
  863. //!
  864. //! <b>Throws</b>: Nothing.
  865. //!
  866. //! <b>Complexity</b>: Amortized constant time.
  867. iterator erase(const_iterator p) BOOST_NOEXCEPT_OR_NOTHROW
  868. {
  869. BOOST_ASSERT(p != this->cend() && (priv_is_linked)(p));
  870. return iterator(this->icont().erase_and_dispose(p.get(), Destroyer(this->node_alloc())));
  871. }
  872. //! <b>Requires</b>: first and last must be valid iterator to elements in *this.
  873. //!
  874. //! <b>Effects</b>: Erases the elements pointed by [first, last).
  875. //!
  876. //! <b>Throws</b>: Nothing.
  877. //!
  878. //! <b>Complexity</b>: Linear to the distance between first and last.
  879. iterator erase(const_iterator first, const_iterator last) BOOST_NOEXCEPT_OR_NOTHROW
  880. {
  881. BOOST_ASSERT(first == last || (first != this->cend() && (priv_is_linked)(first)));
  882. BOOST_ASSERT(first == last || (priv_is_linked)(last));
  883. return iterator(AllocHolder::erase_range(first.get(), last.get(), alloc_version()));
  884. }
  885. //! <b>Effects</b>: Swaps the contents of *this and x.
  886. //!
  887. //! <b>Throws</b>: Nothing.
  888. //!
  889. //! <b>Complexity</b>: Constant.
  890. void swap(list& x)
  891. BOOST_NOEXCEPT_IF(allocator_traits_type::propagate_on_container_swap::value
  892. || allocator_traits_type::is_always_equal::value)
  893. {
  894. BOOST_ASSERT(allocator_traits_type::propagate_on_container_swap::value ||
  895. allocator_traits_type::is_always_equal::value ||
  896. this->get_stored_allocator() == x.get_stored_allocator());
  897. AllocHolder::swap(x);
  898. }
  899. //! <b>Effects</b>: Erases all the elements of the list.
  900. //!
  901. //! <b>Throws</b>: Nothing.
  902. //!
  903. //! <b>Complexity</b>: Linear to the number of elements in the list.
  904. void clear() BOOST_NOEXCEPT_OR_NOTHROW
  905. { AllocHolder::clear(alloc_version()); }
  906. //////////////////////////////////////////////
  907. //
  908. // slist operations
  909. //
  910. //////////////////////////////////////////////
  911. //! <b>Requires</b>: p must point to an element contained
  912. //! by the list. x != *this. this' allocator and x's allocator shall compare equal
  913. //!
  914. //! <b>Effects</b>: Transfers all the elements of list x to this list, before the
  915. //! the element pointed by p. No destructors or copy constructors are called.
  916. //!
  917. //! <b>Throws</b>: Nothing
  918. //!
  919. //! <b>Complexity</b>: Constant.
  920. //!
  921. //! <b>Note</b>: Iterators of values obtained from list x now point to elements of
  922. //! this list. Iterators of this list and all the references are not invalidated.
  923. void splice(const_iterator p, list& x) BOOST_NOEXCEPT_OR_NOTHROW
  924. {
  925. BOOST_ASSERT((priv_is_linked)(p));
  926. BOOST_ASSERT(this != &x);
  927. BOOST_ASSERT(this->node_alloc() == x.node_alloc());
  928. this->icont().splice(p.get(), x.icont());
  929. }
  930. //! <b>Requires</b>: p must point to an element contained
  931. //! by the list. x != *this. this' allocator and x's allocator shall compare equal
  932. //!
  933. //! <b>Effects</b>: Transfers all the elements of list x to this list, before the
  934. //! the element pointed by p. No destructors or copy constructors are called.
  935. //!
  936. //! <b>Throws</b>: Nothing
  937. //!
  938. //! <b>Complexity</b>: Constant.
  939. //!
  940. //! <b>Note</b>: Iterators of values obtained from list x now point to elements of
  941. //! this list. Iterators of this list and all the references are not invalidated.
  942. void splice(const_iterator p, BOOST_RV_REF(list) x) BOOST_NOEXCEPT_OR_NOTHROW
  943. {
  944. //Checks done in splice
  945. this->splice(p, static_cast<list&>(x));
  946. }
  947. //! <b>Requires</b>: p must point to an element contained
  948. //! by this list. i must point to an element contained in list x.
  949. //! this' allocator and x's allocator shall compare equal
  950. //!
  951. //! <b>Effects</b>: Transfers the value pointed by i, from list x to this list,
  952. //! before the the element pointed by p. No destructors or copy constructors are called.
  953. //! If p == i or p == ++i, this function is a null operation.
  954. //!
  955. //! <b>Throws</b>: Nothing
  956. //!
  957. //! <b>Complexity</b>: Constant.
  958. //!
  959. //! <b>Note</b>: Iterators of values obtained from list x now point to elements of this
  960. //! list. Iterators of this list and all the references are not invalidated.
  961. void splice(const_iterator p, list &x, const_iterator i) BOOST_NOEXCEPT_OR_NOTHROW
  962. {
  963. BOOST_ASSERT((priv_is_linked)(p));
  964. BOOST_ASSERT(this->node_alloc() == x.node_alloc());
  965. this->icont().splice(p.get(), x.icont(), i.get());
  966. }
  967. //! <b>Requires</b>: p must point to an element contained
  968. //! by this list. i must point to an element contained in list x.
  969. //! this' allocator and x's allocator shall compare equal.
  970. //!
  971. //! <b>Effects</b>: Transfers the value pointed by i, from list x to this list,
  972. //! before the the element pointed by p. No destructors or copy constructors are called.
  973. //! If p == i or p == ++i, this function is a null operation.
  974. //!
  975. //! <b>Throws</b>: Nothing
  976. //!
  977. //! <b>Complexity</b>: Constant.
  978. //!
  979. //! <b>Note</b>: Iterators of values obtained from list x now point to elements of this
  980. //! list. Iterators of this list and all the references are not invalidated.
  981. void splice(const_iterator p, BOOST_RV_REF(list) x, const_iterator i) BOOST_NOEXCEPT_OR_NOTHROW
  982. {
  983. BOOST_ASSERT(this != &x);
  984. //Additional checks done in splice()
  985. this->splice(p, static_cast<list&>(x), i);
  986. }
  987. //! <b>Requires</b>: p must point to an element contained
  988. //! by this list. first and last must point to elements contained in list x.
  989. //! this' allocator and x's allocator shall compare equal
  990. //!
  991. //! <b>Effects</b>: Transfers the range pointed by first and last from list x to this list,
  992. //! before the the element pointed by p. No destructors or copy constructors are called.
  993. //!
  994. //! <b>Throws</b>: Nothing
  995. //!
  996. //! <b>Complexity</b>: Linear to the number of elements transferred.
  997. //!
  998. //! <b>Note</b>: Iterators of values obtained from list x now point to elements of this
  999. //! list. Iterators of this list and all the references are not invalidated.
  1000. void splice(const_iterator p, list &x, const_iterator first, const_iterator last) BOOST_NOEXCEPT_OR_NOTHROW
  1001. {
  1002. BOOST_ASSERT((priv_is_linked)(p));
  1003. BOOST_ASSERT(first == last || (first != x.cend() && x.priv_is_linked(first)));
  1004. BOOST_ASSERT(first == last || x.priv_is_linked(last));
  1005. BOOST_ASSERT(this->node_alloc() == x.node_alloc());
  1006. this->icont().splice(p.get(), x.icont(), first.get(), last.get());
  1007. }
  1008. //! <b>Requires</b>: p must point to an element contained
  1009. //! by this list. first and last must point to elements contained in list x.
  1010. //! this' allocator and x's allocator shall compare equal.
  1011. //!
  1012. //! <b>Effects</b>: Transfers the range pointed by first and last from list x to this list,
  1013. //! before the the element pointed by p. No destructors or copy constructors are called.
  1014. //!
  1015. //! <b>Throws</b>: Nothing
  1016. //!
  1017. //! <b>Complexity</b>: Linear to the number of elements transferred.
  1018. //!
  1019. //! <b>Note</b>: Iterators of values obtained from list x now point to elements of this
  1020. //! list. Iterators of this list and all the references are not invalidated.
  1021. void splice(const_iterator p, BOOST_RV_REF(list) x, const_iterator first, const_iterator last) BOOST_NOEXCEPT_OR_NOTHROW
  1022. {
  1023. BOOST_ASSERT(this != &x);
  1024. //Additional checks done in splice()
  1025. this->splice(p, static_cast<list&>(x), first, last);
  1026. }
  1027. //! <b>Requires</b>: p must point to an element contained
  1028. //! by this list. first and last must point to elements contained in list x.
  1029. //! n == distance(first, last). this' allocator and x's allocator shall compare equal
  1030. //!
  1031. //! <b>Effects</b>: Transfers the range pointed by first and last from list x to this list,
  1032. //! before the the element pointed by p. No destructors or copy constructors are called.
  1033. //!
  1034. //! <b>Throws</b>: Nothing
  1035. //!
  1036. //! <b>Complexity</b>: Constant.
  1037. //!
  1038. //! <b>Note</b>: Iterators of values obtained from list x now point to elements of this
  1039. //! list. Iterators of this list and all the references are not invalidated.
  1040. //!
  1041. //! <b>Note</b>: Non-standard extension
  1042. void splice(const_iterator p, list &x, const_iterator first, const_iterator last, size_type n) BOOST_NOEXCEPT_OR_NOTHROW
  1043. {
  1044. BOOST_ASSERT(this->node_alloc() == x.node_alloc());
  1045. this->icont().splice(p.get(), x.icont(), first.get(), last.get(), n);
  1046. }
  1047. //! <b>Requires</b>: p must point to an element contained
  1048. //! by this list. first and last must point to elements contained in list x.
  1049. //! n == distance(first, last). this' allocator and x's allocator shall compare equal
  1050. //!
  1051. //! <b>Effects</b>: Transfers the range pointed by first and last from list x to this list,
  1052. //! before the the element pointed by p. No destructors or copy constructors are called.
  1053. //!
  1054. //! <b>Throws</b>: Nothing
  1055. //!
  1056. //! <b>Complexity</b>: Constant.
  1057. //!
  1058. //! <b>Note</b>: Iterators of values obtained from list x now point to elements of this
  1059. //! list. Iterators of this list and all the references are not invalidated.
  1060. //!
  1061. //! <b>Note</b>: Non-standard extension
  1062. void splice(const_iterator p, BOOST_RV_REF(list) x, const_iterator first, const_iterator last, size_type n) BOOST_NOEXCEPT_OR_NOTHROW
  1063. { this->splice(p, static_cast<list&>(x), first, last, n); }
  1064. //! <b>Effects</b>: Removes all the elements that compare equal to value.
  1065. //!
  1066. //! <b>Throws</b>: If comparison throws.
  1067. //!
  1068. //! <b>Complexity</b>: Linear time. It performs exactly size() comparisons for equality.
  1069. //!
  1070. //! <b>Note</b>: The relative order of elements that are not removed is unchanged,
  1071. //! and iterators to elements that are not removed remain valid.
  1072. void remove(const T& value)
  1073. { this->remove_if(equal_to_value_type(value)); }
  1074. //! <b>Effects</b>: Removes all the elements for which a specified
  1075. //! predicate is satisfied.
  1076. //!
  1077. //! <b>Throws</b>: If pred throws.
  1078. //!
  1079. //! <b>Complexity</b>: Linear time. It performs exactly size() calls to the predicate.
  1080. //!
  1081. //! <b>Note</b>: The relative order of elements that are not removed is unchanged,
  1082. //! and iterators to elements that are not removed remain valid.
  1083. template <class Pred>
  1084. void remove_if(Pred pred)
  1085. {
  1086. typedef value_to_node_compare<Node, Pred> value_to_node_compare_type;
  1087. this->icont().remove_and_dispose_if(value_to_node_compare_type(pred), Destroyer(this->node_alloc()));
  1088. }
  1089. //! <b>Effects</b>: Removes adjacent duplicate elements or adjacent
  1090. //! elements that are equal from the list.
  1091. //!
  1092. //! <b>Throws</b>: If comparison throws.
  1093. //!
  1094. //! <b>Complexity</b>: Linear time (size()-1 comparisons equality comparisons).
  1095. //!
  1096. //! <b>Note</b>: The relative order of elements that are not removed is unchanged,
  1097. //! and iterators to elements that are not removed remain valid.
  1098. void unique()
  1099. { this->unique(value_equal()); }
  1100. //! <b>Effects</b>: Removes adjacent duplicate elements or adjacent
  1101. //! elements that satisfy some binary predicate from the list.
  1102. //!
  1103. //! <b>Throws</b>: If pred throws.
  1104. //!
  1105. //! <b>Complexity</b>: Linear time (size()-1 comparisons calls to pred()).
  1106. //!
  1107. //! <b>Note</b>: The relative order of elements that are not removed is unchanged,
  1108. //! and iterators to elements that are not removed remain valid.
  1109. template <class BinaryPredicate>
  1110. void unique(BinaryPredicate binary_pred)
  1111. {
  1112. typedef value_to_node_compare<Node, BinaryPredicate> value_to_node_compare_type;
  1113. this->icont().unique_and_dispose(value_to_node_compare_type(binary_pred), Destroyer(this->node_alloc()));
  1114. }
  1115. //! <b>Requires</b>: The lists x and *this must be distinct.
  1116. //!
  1117. //! <b>Effects</b>: This function removes all of x's elements and inserts them
  1118. //! in order into *this according to std::less<value_type>. The merge is stable;
  1119. //! that is, if an element from *this is equivalent to one from x, then the element
  1120. //! from *this will precede the one from x.
  1121. //!
  1122. //! <b>Throws</b>: If comparison throws.
  1123. //!
  1124. //! <b>Complexity</b>: This function is linear time: it performs at most
  1125. //! size() + x.size() - 1 comparisons.
  1126. void merge(list &x)
  1127. { this->merge(x, value_less()); }
  1128. //! <b>Requires</b>: The lists x and *this must be distinct.
  1129. //!
  1130. //! <b>Effects</b>: This function removes all of x's elements and inserts them
  1131. //! in order into *this according to std::less<value_type>. The merge is stable;
  1132. //! that is, if an element from *this is equivalent to one from x, then the element
  1133. //! from *this will precede the one from x.
  1134. //!
  1135. //! <b>Throws</b>: If comparison throws.
  1136. //!
  1137. //! <b>Complexity</b>: This function is linear time: it performs at most
  1138. //! size() + x.size() - 1 comparisons.
  1139. void merge(BOOST_RV_REF(list) x)
  1140. { this->merge(static_cast<list&>(x)); }
  1141. //! <b>Requires</b>: p must be a comparison function that induces a strict weak
  1142. //! ordering and both *this and x must be sorted according to that ordering
  1143. //! The lists x and *this must be distinct.
  1144. //!
  1145. //! <b>Effects</b>: This function removes all of x's elements and inserts them
  1146. //! in order into *this. The merge is stable; that is, if an element from *this is
  1147. //! equivalent to one from x, then the element from *this will precede the one from x.
  1148. //!
  1149. //! <b>Throws</b>: If comp throws.
  1150. //!
  1151. //! <b>Complexity</b>: This function is linear time: it performs at most
  1152. //! size() + x.size() - 1 comparisons.
  1153. //!
  1154. //! <b>Note</b>: Iterators and references to *this are not invalidated.
  1155. template <class StrictWeakOrdering>
  1156. void merge(list &x, const StrictWeakOrdering &comp)
  1157. {
  1158. BOOST_ASSERT(this->node_alloc() == x.node_alloc());
  1159. typedef value_to_node_compare<Node, StrictWeakOrdering> value_to_node_compare_type;
  1160. this->icont().merge(x.icont(), value_to_node_compare_type(comp));
  1161. }
  1162. //! <b>Requires</b>: p must be a comparison function that induces a strict weak
  1163. //! ordering and both *this and x must be sorted according to that ordering
  1164. //! The lists x and *this must be distinct.
  1165. //!
  1166. //! <b>Effects</b>: This function removes all of x's elements and inserts them
  1167. //! in order into *this. The merge is stable; that is, if an element from *this is
  1168. //! equivalent to one from x, then the element from *this will precede the one from x.
  1169. //!
  1170. //! <b>Throws</b>: If comp throws.
  1171. //!
  1172. //! <b>Complexity</b>: This function is linear time: it performs at most
  1173. //! size() + x.size() - 1 comparisons.
  1174. //!
  1175. //! <b>Note</b>: Iterators and references to *this are not invalidated.
  1176. template <class StrictWeakOrdering>
  1177. void merge(BOOST_RV_REF(list) x, StrictWeakOrdering comp)
  1178. { this->merge(static_cast<list&>(x), comp); }
  1179. //! <b>Effects</b>: This function sorts the list *this according to std::less<value_type>.
  1180. //! The sort is stable, that is, the relative order of equivalent elements is preserved.
  1181. //!
  1182. //! <b>Throws</b>: If comparison throws.
  1183. //!
  1184. //! <b>Notes</b>: Iterators and references are not invalidated.
  1185. //!
  1186. //! <b>Complexity</b>: The number of comparisons is approximately N log N, where N
  1187. //! is the list's size.
  1188. void sort()
  1189. { this->sort(value_less()); }
  1190. //! <b>Effects</b>: This function sorts the list *this according to std::less<value_type>.
  1191. //! The sort is stable, that is, the relative order of equivalent elements is preserved.
  1192. //!
  1193. //! <b>Throws</b>: If comp throws.
  1194. //!
  1195. //! <b>Notes</b>: Iterators and references are not invalidated.
  1196. //!
  1197. //! <b>Complexity</b>: The number of comparisons is approximately N log N, where N
  1198. //! is the list's size.
  1199. template <class StrictWeakOrdering>
  1200. void sort(StrictWeakOrdering comp)
  1201. {
  1202. // nothing if the list has length 0 or 1.
  1203. if (this->size() < 2)
  1204. return;
  1205. typedef value_to_node_compare<Node, StrictWeakOrdering> value_to_node_compare_type;
  1206. this->icont().sort(value_to_node_compare_type(comp));
  1207. }
  1208. //! <b>Effects</b>: Reverses the order of elements in the list.
  1209. //!
  1210. //! <b>Throws</b>: Nothing.
  1211. //!
  1212. //! <b>Complexity</b>: This function is linear time.
  1213. //!
  1214. //! <b>Note</b>: Iterators and references are not invalidated
  1215. void reverse() BOOST_NOEXCEPT_OR_NOTHROW
  1216. { this->icont().reverse(); }
  1217. //! <b>Effects</b>: Returns true if x and y are equal
  1218. //!
  1219. //! <b>Complexity</b>: Linear to the number of elements in the container.
  1220. friend bool operator==(const list& x, const list& y)
  1221. { return x.size() == y.size() && ::boost::container::algo_equal(x.begin(), x.end(), y.begin()); }
  1222. //! <b>Effects</b>: Returns true if x and y are unequal
  1223. //!
  1224. //! <b>Complexity</b>: Linear to the number of elements in the container.
  1225. friend bool operator!=(const list& x, const list& y)
  1226. { return !(x == y); }
  1227. //! <b>Effects</b>: Returns true if x is less than y
  1228. //!
  1229. //! <b>Complexity</b>: Linear to the number of elements in the container.
  1230. friend bool operator<(const list& x, const list& y)
  1231. { return boost::container::algo_lexicographical_compare(x.begin(), x.end(), y.begin(), y.end()); }
  1232. //! <b>Effects</b>: Returns true if x is greater than y
  1233. //!
  1234. //! <b>Complexity</b>: Linear to the number of elements in the container.
  1235. friend bool operator>(const list& x, const list& y)
  1236. { return y < x; }
  1237. //! <b>Effects</b>: Returns true if x is equal or less than y
  1238. //!
  1239. //! <b>Complexity</b>: Linear to the number of elements in the container.
  1240. friend bool operator<=(const list& x, const list& y)
  1241. { return !(y < x); }
  1242. //! <b>Effects</b>: Returns true if x is equal or greater than y
  1243. //!
  1244. //! <b>Complexity</b>: Linear to the number of elements in the container.
  1245. friend bool operator>=(const list& x, const list& y)
  1246. { return !(x < y); }
  1247. //! <b>Effects</b>: x.swap(y)
  1248. //!
  1249. //! <b>Complexity</b>: Constant.
  1250. friend void swap(list& x, list& y)
  1251. { x.swap(y); }
  1252. #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
  1253. private:
  1254. static bool priv_is_linked(const_iterator const position)
  1255. {
  1256. const_iterator cur(position);
  1257. //This list is circular including end nodes
  1258. return (--(++cur)) == position && (++(--cur)) == position;
  1259. }
  1260. bool priv_try_shrink(size_type new_size)
  1261. {
  1262. const size_type len = this->size();
  1263. if(len > new_size){
  1264. const const_iterator iend = this->cend();
  1265. size_type to_erase = len - new_size;
  1266. const_iterator ifirst;
  1267. if(to_erase < len/2u){
  1268. ifirst = iend;
  1269. while(to_erase--){
  1270. --ifirst;
  1271. }
  1272. }
  1273. else{
  1274. ifirst = this->cbegin();
  1275. size_type to_skip = len - to_erase;
  1276. while(to_skip--){
  1277. ++ifirst;
  1278. }
  1279. }
  1280. this->erase(ifirst, iend);
  1281. return true;
  1282. }
  1283. else{
  1284. return false;
  1285. }
  1286. }
  1287. iterator priv_insert(const_iterator p, const T &x)
  1288. {
  1289. BOOST_ASSERT((priv_is_linked)(p));
  1290. NodePtr tmp = AllocHolder::create_node(x);
  1291. return iterator(this->icont().insert(p.get(), *tmp));
  1292. }
  1293. iterator priv_insert(const_iterator p, BOOST_RV_REF(T) x)
  1294. {
  1295. BOOST_ASSERT((priv_is_linked)(p));
  1296. NodePtr tmp = AllocHolder::create_node(boost::move(x));
  1297. return iterator(this->icont().insert(p.get(), *tmp));
  1298. }
  1299. void priv_push_back (const T &x)
  1300. { this->insert(this->cend(), x); }
  1301. void priv_push_back (BOOST_RV_REF(T) x)
  1302. { this->insert(this->cend(), boost::move(x)); }
  1303. void priv_push_front (const T &x)
  1304. { this->insert(this->cbegin(), x); }
  1305. void priv_push_front (BOOST_RV_REF(T) x)
  1306. { this->insert(this->cbegin(), boost::move(x)); }
  1307. class insertion_functor;
  1308. friend class insertion_functor;
  1309. class insertion_functor
  1310. {
  1311. Icont &icont_;
  1312. typedef typename Icont::const_iterator iconst_iterator;
  1313. const iconst_iterator pos_;
  1314. public:
  1315. insertion_functor(Icont &icont, typename Icont::const_iterator pos)
  1316. : icont_(icont), pos_(pos)
  1317. {}
  1318. void operator()(Node &n)
  1319. {
  1320. this->icont_.insert(pos_, n);
  1321. }
  1322. };
  1323. //Functors for member algorithm defaults
  1324. struct value_less
  1325. {
  1326. bool operator()(const value_type &a, const value_type &b) const
  1327. { return a < b; }
  1328. };
  1329. struct value_equal
  1330. {
  1331. bool operator()(const value_type &a, const value_type &b) const
  1332. { return a == b; }
  1333. };
  1334. #endif //#ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
  1335. };
  1336. #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
  1337. } //namespace container {
  1338. //!has_trivial_destructor_after_move<> == true_type
  1339. //!specialization for optimizations
  1340. template <class T, class Allocator>
  1341. struct has_trivial_destructor_after_move<boost::container::list<T, Allocator> >
  1342. {
  1343. typedef typename ::boost::container::allocator_traits<Allocator>::pointer pointer;
  1344. static const bool value = ::boost::has_trivial_destructor_after_move<Allocator>::value &&
  1345. ::boost::has_trivial_destructor_after_move<pointer>::value;
  1346. };
  1347. namespace container {
  1348. #endif //#ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
  1349. }}
  1350. #include <boost/container/detail/config_end.hpp>
  1351. #endif // BOOST_CONTAINER_LIST_HPP