static_vector.hpp 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221
  1. // Boost.Container static_vector
  2. //
  3. // Copyright (c) 2012-2013 Adam Wulkiewicz, Lodz, Poland.
  4. // Copyright (c) 2011-2013 Andrew Hundt.
  5. // Copyright (c) 2013-2014 Ion Gaztanaga
  6. //
  7. // Use, modification and distribution is subject to the Boost Software License,
  8. // Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  9. // http://www.boost.org/LICENSE_1_0.txt)
  10. #ifndef BOOST_CONTAINER_STATIC_VECTOR_HPP
  11. #define BOOST_CONTAINER_STATIC_VECTOR_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. #include <boost/container/detail/type_traits.hpp>
  21. #include <boost/container/vector.hpp>
  22. #include <cstddef>
  23. #if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
  24. #include <initializer_list>
  25. #endif
  26. namespace boost { namespace container {
  27. #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
  28. namespace container_detail {
  29. template<class T, std::size_t N>
  30. class static_storage_allocator
  31. {
  32. public:
  33. typedef T value_type;
  34. BOOST_CONTAINER_FORCEINLINE static_storage_allocator() BOOST_NOEXCEPT_OR_NOTHROW
  35. {}
  36. BOOST_CONTAINER_FORCEINLINE static_storage_allocator(const static_storage_allocator &) BOOST_NOEXCEPT_OR_NOTHROW
  37. {}
  38. BOOST_CONTAINER_FORCEINLINE static_storage_allocator & operator=(const static_storage_allocator &) BOOST_NOEXCEPT_OR_NOTHROW
  39. { return *this; }
  40. BOOST_CONTAINER_FORCEINLINE T* internal_storage() const BOOST_NOEXCEPT_OR_NOTHROW
  41. { return const_cast<T*>(static_cast<const T*>(static_cast<const void*>(&storage))); }
  42. BOOST_CONTAINER_FORCEINLINE T* internal_storage() BOOST_NOEXCEPT_OR_NOTHROW
  43. { return static_cast<T*>(static_cast<void*>(&storage)); }
  44. static const std::size_t internal_capacity = N;
  45. std::size_t max_size() const
  46. { return N; }
  47. typedef boost::container::container_detail::version_type<static_storage_allocator, 0> version;
  48. BOOST_CONTAINER_FORCEINLINE friend bool operator==(const static_storage_allocator &, const static_storage_allocator &) BOOST_NOEXCEPT_OR_NOTHROW
  49. { return false; }
  50. BOOST_CONTAINER_FORCEINLINE friend bool operator!=(const static_storage_allocator &, const static_storage_allocator &) BOOST_NOEXCEPT_OR_NOTHROW
  51. { return true; }
  52. private:
  53. typename aligned_storage<sizeof(T)*N, alignment_of<T>::value>::type storage;
  54. };
  55. } //namespace container_detail {
  56. #endif //#ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
  57. //!
  58. //!@brief A variable-size array container with fixed capacity.
  59. //!
  60. //!static_vector is a sequence container like boost::container::vector with contiguous storage that can
  61. //!change in size, along with the static allocation, low overhead, and fixed capacity of boost::array.
  62. //!
  63. //!A static_vector is a sequence that supports random access to elements, constant time insertion and
  64. //!removal of elements at the end, and linear time insertion and removal of elements at the beginning or
  65. //!in the middle. The number of elements in a static_vector may vary dynamically up to a fixed capacity
  66. //!because elements are stored within the object itself similarly to an array. However, objects are
  67. //!initialized as they are inserted into static_vector unlike C arrays or std::array which must construct
  68. //!all elements on instantiation. The behavior of static_vector enables the use of statically allocated
  69. //!elements in cases with complex object lifetime requirements that would otherwise not be trivially
  70. //!possible.
  71. //!
  72. //!@par Error Handling
  73. //! Insertion beyond the capacity result in throwing std::bad_alloc() if exceptions are enabled or
  74. //! calling throw_bad_alloc() if not enabled.
  75. //!
  76. //! std::out_of_range is thrown if out of bound access is performed in <code>at()</code> if exceptions are
  77. //! enabled, throw_out_of_range() if not enabled.
  78. //!
  79. //!@tparam Value The type of element that will be stored.
  80. //!@tparam Capacity The maximum number of elements static_vector can store, fixed at compile time.
  81. template <typename Value, std::size_t Capacity>
  82. class static_vector
  83. : public vector<Value, container_detail::static_storage_allocator<Value, Capacity> >
  84. {
  85. #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
  86. typedef vector<Value, container_detail::static_storage_allocator<Value, Capacity> > base_t;
  87. BOOST_COPYABLE_AND_MOVABLE(static_vector)
  88. template<class U, std::size_t OtherCapacity>
  89. friend class static_vector;
  90. #endif //#ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
  91. public:
  92. //! @brief The type of elements stored in the container.
  93. typedef typename base_t::value_type value_type;
  94. //! @brief The unsigned integral type used by the container.
  95. typedef typename base_t::size_type size_type;
  96. //! @brief The pointers difference type.
  97. typedef typename base_t::difference_type difference_type;
  98. //! @brief The pointer type.
  99. typedef typename base_t::pointer pointer;
  100. //! @brief The const pointer type.
  101. typedef typename base_t::const_pointer const_pointer;
  102. //! @brief The value reference type.
  103. typedef typename base_t::reference reference;
  104. //! @brief The value const reference type.
  105. typedef typename base_t::const_reference const_reference;
  106. //! @brief The iterator type.
  107. typedef typename base_t::iterator iterator;
  108. //! @brief The const iterator type.
  109. typedef typename base_t::const_iterator const_iterator;
  110. //! @brief The reverse iterator type.
  111. typedef typename base_t::reverse_iterator reverse_iterator;
  112. //! @brief The const reverse iterator.
  113. typedef typename base_t::const_reverse_iterator const_reverse_iterator;
  114. //! @brief Constructs an empty static_vector.
  115. //!
  116. //! @par Throws
  117. //! Nothing.
  118. //!
  119. //! @par Complexity
  120. //! Constant O(1).
  121. BOOST_CONTAINER_FORCEINLINE static_vector() BOOST_NOEXCEPT_OR_NOTHROW
  122. : base_t()
  123. {}
  124. //! @pre <tt>count <= capacity()</tt>
  125. //!
  126. //! @brief Constructs a static_vector containing count value initialized values.
  127. //!
  128. //! @param count The number of values which will be contained in the container.
  129. //!
  130. //! @par Throws
  131. //! If Value's value initialization throws.
  132. //!
  133. //! @par Complexity
  134. //! Linear O(N).
  135. BOOST_CONTAINER_FORCEINLINE explicit static_vector(size_type count)
  136. : base_t(count)
  137. {}
  138. //! @pre <tt>count <= capacity()</tt>
  139. //!
  140. //! @brief Constructs a static_vector containing count default initialized values.
  141. //!
  142. //! @param count The number of values which will be contained in the container.
  143. //!
  144. //! @par Throws
  145. //! If Value's default initialization throws.
  146. //!
  147. //! @par Complexity
  148. //! Linear O(N).
  149. //!
  150. //! @par Note
  151. //! Non-standard extension
  152. BOOST_CONTAINER_FORCEINLINE static_vector(size_type count, default_init_t)
  153. : base_t(count, default_init_t())
  154. {}
  155. //! @pre <tt>count <= capacity()</tt>
  156. //!
  157. //! @brief Constructs a static_vector containing count copies of value.
  158. //!
  159. //! @param count The number of copies of a values that will be contained in the container.
  160. //! @param value The value which will be used to copy construct values.
  161. //!
  162. //! @par Throws
  163. //! If Value's copy constructor throws.
  164. //!
  165. //! @par Complexity
  166. //! Linear O(N).
  167. BOOST_CONTAINER_FORCEINLINE static_vector(size_type count, value_type const& value)
  168. : base_t(count, value)
  169. {}
  170. //! @pre
  171. //! @li <tt>distance(first, last) <= capacity()</tt>
  172. //! @li Iterator must meet the \c ForwardTraversalIterator concept.
  173. //!
  174. //! @brief Constructs a static_vector containing copy of a range <tt>[first, last)</tt>.
  175. //!
  176. //! @param first The iterator to the first element in range.
  177. //! @param last The iterator to the one after the last element in range.
  178. //!
  179. //! @par Throws
  180. //! If Value's constructor taking a dereferenced Iterator throws.
  181. //!
  182. //! @par Complexity
  183. //! Linear O(N).
  184. template <typename Iterator>
  185. BOOST_CONTAINER_FORCEINLINE static_vector(Iterator first, Iterator last)
  186. : base_t(first, last)
  187. {}
  188. #if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
  189. //! @pre
  190. //! @li <tt>distance(il.begin(), il.end()) <= capacity()</tt>
  191. //!
  192. //! @brief Constructs a static_vector containing copy of a range <tt>[il.begin(), il.end())</tt>.
  193. //!
  194. //! @param il std::initializer_list with values to initialize vector.
  195. //!
  196. //! @par Throws
  197. //! If Value's constructor taking a dereferenced std::initializer_list throws.
  198. //!
  199. //! @par Complexity
  200. //! Linear O(N).
  201. BOOST_CONTAINER_FORCEINLINE static_vector(std::initializer_list<value_type> il)
  202. : base_t(il)
  203. {}
  204. #endif
  205. //! @brief Constructs a copy of other static_vector.
  206. //!
  207. //! @param other The static_vector which content will be copied to this one.
  208. //!
  209. //! @par Throws
  210. //! If Value's copy constructor throws.
  211. //!
  212. //! @par Complexity
  213. //! Linear O(N).
  214. BOOST_CONTAINER_FORCEINLINE static_vector(static_vector const& other)
  215. : base_t(other)
  216. {}
  217. //! @pre <tt>other.size() <= capacity()</tt>.
  218. //!
  219. //! @brief Constructs a copy of other static_vector.
  220. //!
  221. //! @param other The static_vector which content will be copied to this one.
  222. //!
  223. //! @par Throws
  224. //! If Value's copy constructor throws.
  225. //!
  226. //! @par Complexity
  227. //! Linear O(N).
  228. template <std::size_t C>
  229. BOOST_CONTAINER_FORCEINLINE static_vector(static_vector<value_type, C> const& other)
  230. : base_t(other)
  231. {}
  232. //! @brief Move constructor. Moves Values stored in the other static_vector to this one.
  233. //!
  234. //! @param other The static_vector which content will be moved to this one.
  235. //!
  236. //! @par Throws
  237. //! @li If \c has_nothrow_move<Value>::value is \c true and Value's move constructor throws.
  238. //! @li If \c has_nothrow_move<Value>::value is \c false and Value's copy constructor throws.
  239. //!
  240. //! @par Complexity
  241. //! Linear O(N).
  242. BOOST_CONTAINER_FORCEINLINE static_vector(BOOST_RV_REF(static_vector) other)
  243. : base_t(BOOST_MOVE_BASE(base_t, other))
  244. {}
  245. //! @pre <tt>other.size() <= capacity()</tt>
  246. //!
  247. //! @brief Move constructor. Moves Values stored in the other static_vector to this one.
  248. //!
  249. //! @param other The static_vector which content will be moved to this one.
  250. //!
  251. //! @par Throws
  252. //! @li If \c has_nothrow_move<Value>::value is \c true and Value's move constructor throws.
  253. //! @li If \c has_nothrow_move<Value>::value is \c false and Value's copy constructor throws.
  254. //!
  255. //! @par Complexity
  256. //! Linear O(N).
  257. template <std::size_t C>
  258. BOOST_CONTAINER_FORCEINLINE static_vector(BOOST_RV_REF_BEG static_vector<value_type, C> BOOST_RV_REF_END other)
  259. : base_t(BOOST_MOVE_BASE(typename static_vector<value_type BOOST_MOVE_I C>::base_t, other))
  260. {}
  261. //! @brief Copy assigns Values stored in the other static_vector to this one.
  262. //!
  263. //! @param other The static_vector which content will be copied to this one.
  264. //!
  265. //! @par Throws
  266. //! If Value's copy constructor or copy assignment throws.
  267. //!
  268. //! @par Complexity
  269. //! Linear O(N).
  270. BOOST_CONTAINER_FORCEINLINE static_vector & operator=(BOOST_COPY_ASSIGN_REF(static_vector) other)
  271. {
  272. return static_cast<static_vector&>(base_t::operator=(static_cast<base_t const&>(other)));
  273. }
  274. #if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
  275. //! @brief Copy assigns Values stored in std::initializer_list to *this.
  276. //!
  277. //! @param il The std::initializer_list which content will be copied to this one.
  278. //!
  279. //! @par Throws
  280. //! If Value's copy constructor or copy assignment throws.
  281. //!
  282. //! @par Complexity
  283. //! Linear O(N).
  284. BOOST_CONTAINER_FORCEINLINE static_vector & operator=(std::initializer_list<value_type> il)
  285. { return static_cast<static_vector&>(base_t::operator=(il)); }
  286. #endif
  287. //! @pre <tt>other.size() <= capacity()</tt>
  288. //!
  289. //! @brief Copy assigns Values stored in the other static_vector to this one.
  290. //!
  291. //! @param other The static_vector which content will be copied to this one.
  292. //!
  293. //! @par Throws
  294. //! If Value's copy constructor or copy assignment throws.
  295. //!
  296. //! @par Complexity
  297. //! Linear O(N).
  298. template <std::size_t C>
  299. BOOST_CONTAINER_FORCEINLINE static_vector & operator=(static_vector<value_type, C> const& other)
  300. {
  301. return static_cast<static_vector&>(base_t::operator=
  302. (static_cast<typename static_vector<value_type, C>::base_t const&>(other)));
  303. }
  304. //! @brief Move assignment. Moves Values stored in the other static_vector to this one.
  305. //!
  306. //! @param other The static_vector which content will be moved to this one.
  307. //!
  308. //! @par Throws
  309. //! @li If \c has_nothrow_move<Value>::value is \c true and Value's move constructor or move assignment throws.
  310. //! @li If \c has_nothrow_move<Value>::value is \c false and Value's copy constructor or copy assignment throws.
  311. //!
  312. //! @par Complexity
  313. //! Linear O(N).
  314. BOOST_CONTAINER_FORCEINLINE static_vector & operator=(BOOST_RV_REF(static_vector) other)
  315. {
  316. return static_cast<static_vector&>(base_t::operator=(BOOST_MOVE_BASE(base_t, other)));
  317. }
  318. //! @pre <tt>other.size() <= capacity()</tt>
  319. //!
  320. //! @brief Move assignment. Moves Values stored in the other static_vector to this one.
  321. //!
  322. //! @param other The static_vector which content will be moved to this one.
  323. //!
  324. //! @par Throws
  325. //! @li If \c has_nothrow_move<Value>::value is \c true and Value's move constructor or move assignment throws.
  326. //! @li If \c has_nothrow_move<Value>::value is \c false and Value's copy constructor or copy assignment throws.
  327. //!
  328. //! @par Complexity
  329. //! Linear O(N).
  330. template <std::size_t C>
  331. BOOST_CONTAINER_FORCEINLINE static_vector & operator=(BOOST_RV_REF_BEG static_vector<value_type, C> BOOST_RV_REF_END other)
  332. {
  333. return static_cast<static_vector&>(base_t::operator=
  334. (BOOST_MOVE_BASE(typename static_vector<value_type BOOST_MOVE_I C>::base_t, other)));
  335. }
  336. #ifdef BOOST_CONTAINER_DOXYGEN_INVOKED
  337. //! @brief Destructor. Destroys Values stored in this container.
  338. //!
  339. //! @par Throws
  340. //! Nothing
  341. //!
  342. //! @par Complexity
  343. //! Linear O(N).
  344. ~static_vector();
  345. //! @brief Swaps contents of the other static_vector and this one.
  346. //!
  347. //! @param other The static_vector which content will be swapped with this one's content.
  348. //!
  349. //! @par Throws
  350. //! @li If \c has_nothrow_move<Value>::value is \c true and Value's move constructor or move assignment throws,
  351. //! @li If \c has_nothrow_move<Value>::value is \c false and Value's copy constructor or copy assignment throws,
  352. //!
  353. //! @par Complexity
  354. //! Linear O(N).
  355. void swap(static_vector & other);
  356. //! @pre <tt>other.size() <= capacity() && size() <= other.capacity()</tt>
  357. //!
  358. //! @brief Swaps contents of the other static_vector and this one.
  359. //!
  360. //! @param other The static_vector which content will be swapped with this one's content.
  361. //!
  362. //! @par Throws
  363. //! @li If \c has_nothrow_move<Value>::value is \c true and Value's move constructor or move assignment throws,
  364. //! @li If \c has_nothrow_move<Value>::value is \c false and Value's copy constructor or copy assignment throws,
  365. //!
  366. //! @par Complexity
  367. //! Linear O(N).
  368. template <std::size_t C>
  369. void swap(static_vector<value_type, C> & other);
  370. //! @pre <tt>count <= capacity()</tt>
  371. //!
  372. //! @brief Inserts or erases elements at the end such that
  373. //! the size becomes count. New elements are value initialized.
  374. //!
  375. //! @param count The number of elements which will be stored in the container.
  376. //!
  377. //! @par Throws
  378. //! If Value's value initialization throws.
  379. //!
  380. //! @par Complexity
  381. //! Linear O(N).
  382. void resize(size_type count);
  383. //! @pre <tt>count <= capacity()</tt>
  384. //!
  385. //! @brief Inserts or erases elements at the end such that
  386. //! the size becomes count. New elements are default initialized.
  387. //!
  388. //! @param count The number of elements which will be stored in the container.
  389. //!
  390. //! @par Throws
  391. //! If Value's default initialization throws.
  392. //!
  393. //! @par Complexity
  394. //! Linear O(N).
  395. //!
  396. //! @par Note
  397. //! Non-standard extension
  398. void resize(size_type count, default_init_t);
  399. //! @pre <tt>count <= capacity()</tt>
  400. //!
  401. //! @brief Inserts or erases elements at the end such that
  402. //! the size becomes count. New elements are copy constructed from value.
  403. //!
  404. //! @param count The number of elements which will be stored in the container.
  405. //! @param value The value used to copy construct the new element.
  406. //!
  407. //! @par Throws
  408. //! If Value's copy constructor throws.
  409. //!
  410. //! @par Complexity
  411. //! Linear O(N).
  412. void resize(size_type count, value_type const& value);
  413. //! @pre <tt>count <= capacity()</tt>
  414. //!
  415. //! @brief This call has no effect because the Capacity of this container is constant.
  416. //!
  417. //! @param count The number of elements which the container should be able to contain.
  418. //!
  419. //! @par Throws
  420. //! Nothing.
  421. //!
  422. //! @par Complexity
  423. //! Linear O(N).
  424. void reserve(size_type count) BOOST_NOEXCEPT_OR_NOTHROW;
  425. //! @pre <tt>size() < capacity()</tt>
  426. //!
  427. //! @brief Adds a copy of value at the end.
  428. //!
  429. //! @param value The value used to copy construct the new element.
  430. //!
  431. //! @par Throws
  432. //! If Value's copy constructor throws.
  433. //!
  434. //! @par Complexity
  435. //! Constant O(1).
  436. void push_back(value_type const& value);
  437. //! @pre <tt>size() < capacity()</tt>
  438. //!
  439. //! @brief Moves value to the end.
  440. //!
  441. //! @param value The value to move construct the new element.
  442. //!
  443. //! @par Throws
  444. //! If Value's move constructor throws.
  445. //!
  446. //! @par Complexity
  447. //! Constant O(1).
  448. void push_back(BOOST_RV_REF(value_type) value);
  449. //! @pre <tt>!empty()</tt>
  450. //!
  451. //! @brief Destroys last value and decreases the size.
  452. //!
  453. //! @par Throws
  454. //! Nothing by default.
  455. //!
  456. //! @par Complexity
  457. //! Constant O(1).
  458. void pop_back();
  459. //! @pre
  460. //! @li \c p must be a valid iterator of \c *this in range <tt>[begin(), end()]</tt>.
  461. //! @li <tt>size() < capacity()</tt>
  462. //!
  463. //! @brief Inserts a copy of element at p.
  464. //!
  465. //! @param p The position at which the new value will be inserted.
  466. //! @param value The value used to copy construct the new element.
  467. //!
  468. //! @par Throws
  469. //! @li If Value's copy constructor or copy assignment throws
  470. //! @li If Value's move constructor or move assignment throws.
  471. //!
  472. //! @par Complexity
  473. //! Constant or linear.
  474. iterator insert(const_iterator p, value_type const& value);
  475. //! @pre
  476. //! @li \c p must be a valid iterator of \c *this in range <tt>[begin(), end()]</tt>.
  477. //! @li <tt>size() < capacity()</tt>
  478. //!
  479. //! @brief Inserts a move-constructed element at p.
  480. //!
  481. //! @param p The position at which the new value will be inserted.
  482. //! @param value The value used to move construct the new element.
  483. //!
  484. //! @par Throws
  485. //! If Value's move constructor or move assignment throws.
  486. //!
  487. //! @par Complexity
  488. //! Constant or linear.
  489. iterator insert(const_iterator p, BOOST_RV_REF(value_type) value);
  490. //! @pre
  491. //! @li \c p must be a valid iterator of \c *this in range <tt>[begin(), end()]</tt>.
  492. //! @li <tt>size() + count <= capacity()</tt>
  493. //!
  494. //! @brief Inserts a count copies of value at p.
  495. //!
  496. //! @param p The position at which new elements will be inserted.
  497. //! @param count The number of new elements which will be inserted.
  498. //! @param value The value used to copy construct new elements.
  499. //!
  500. //! @par Throws
  501. //! @li If Value's copy constructor or copy assignment throws.
  502. //! @li If Value's move constructor or move assignment throws.
  503. //!
  504. //! @par Complexity
  505. //! Linear O(N).
  506. iterator insert(const_iterator p, size_type count, value_type const& value);
  507. //! @pre
  508. //! @li \c p must be a valid iterator of \c *this in range <tt>[begin(), end()]</tt>.
  509. //! @li <tt>distance(first, last) <= capacity()</tt>
  510. //! @li \c Iterator must meet the \c ForwardTraversalIterator concept.
  511. //!
  512. //! @brief Inserts a copy of a range <tt>[first, last)</tt> at p.
  513. //!
  514. //! @param p The position at which new elements will be inserted.
  515. //! @param first The iterator to the first element of a range used to construct new elements.
  516. //! @param last The iterator to the one after the last element of a range used to construct new elements.
  517. //!
  518. //! @par Throws
  519. //! @li If Value's constructor and assignment taking a dereferenced \c Iterator.
  520. //! @li If Value's move constructor or move assignment throws.
  521. //!
  522. //! @par Complexity
  523. //! Linear O(N).
  524. template <typename Iterator>
  525. iterator insert(const_iterator p, Iterator first, Iterator last);
  526. //! @pre
  527. //! @li \c p must be a valid iterator of \c *this in range <tt>[begin(), end()]</tt>.
  528. //! @li <tt>distance(il.begin(), il.end()) <= capacity()</tt>
  529. //!
  530. //! @brief Inserts a copy of a range <tt>[il.begin(), il.end())</tt> at p.
  531. //!
  532. //! @param p The position at which new elements will be inserted.
  533. //! @param il The std::initializer_list which contains elements that will be inserted.
  534. //!
  535. //! @par Throws
  536. //! @li If Value's constructor and assignment taking a dereferenced std::initializer_list iterator.
  537. //!
  538. //! @par Complexity
  539. //! Linear O(N).
  540. iterator insert(const_iterator p, std::initializer_list<value_type> il);
  541. //! @pre \c p must be a valid iterator of \c *this in range <tt>[begin(), end())</tt>
  542. //!
  543. //! @brief Erases Value from p.
  544. //!
  545. //! @param p The position of the element which will be erased from the container.
  546. //!
  547. //! @par Throws
  548. //! If Value's move assignment throws.
  549. //!
  550. //! @par Complexity
  551. //! Linear O(N).
  552. iterator erase(const_iterator p);
  553. //! @pre
  554. //! @li \c first and \c last must define a valid range
  555. //! @li iterators must be in range <tt>[begin(), end()]</tt>
  556. //!
  557. //! @brief Erases Values from a range <tt>[first, last)</tt>.
  558. //!
  559. //! @param first The position of the first element of a range which will be erased from the container.
  560. //! @param last The position of the one after the last element of a range which will be erased from the container.
  561. //!
  562. //! @par Throws
  563. //! If Value's move assignment throws.
  564. //!
  565. //! @par Complexity
  566. //! Linear O(N).
  567. iterator erase(const_iterator first, const_iterator last);
  568. //! @pre <tt>distance(first, last) <= capacity()</tt>
  569. //!
  570. //! @brief Assigns a range <tt>[first, last)</tt> of Values to this container.
  571. //!
  572. //! @param first The iterator to the first element of a range used to construct new content of this container.
  573. //! @param last The iterator to the one after the last element of a range used to construct new content of this container.
  574. //!
  575. //! @par Throws
  576. //! If Value's copy constructor or copy assignment throws,
  577. //!
  578. //! @par Complexity
  579. //! Linear O(N).
  580. template <typename Iterator>
  581. void assign(Iterator first, Iterator last);
  582. //! @pre <tt>distance(il.begin(), il.end()) <= capacity()</tt>
  583. //!
  584. //! @brief Assigns a range <tt>[il.begin(), il.end())</tt> of Values to this container.
  585. //!
  586. //! @param il std::initializer_list with values used to construct new content of this container.
  587. //!
  588. //! @par Throws
  589. //! If Value's copy constructor or copy assignment throws,
  590. //!
  591. //! @par Complexity
  592. //! Linear O(N).
  593. void assign(std::initializer_list<value_type> il);
  594. //! @pre <tt>count <= capacity()</tt>
  595. //!
  596. //! @brief Assigns a count copies of value to this container.
  597. //!
  598. //! @param count The new number of elements which will be container in the container.
  599. //! @param value The value which will be used to copy construct the new content.
  600. //!
  601. //! @par Throws
  602. //! If Value's copy constructor or copy assignment throws.
  603. //!
  604. //! @par Complexity
  605. //! Linear O(N).
  606. void assign(size_type count, value_type const& value);
  607. //! @pre <tt>size() < capacity()</tt>
  608. //!
  609. //! @brief Inserts a Value constructed with
  610. //! \c std::forward<Args>(args)... in the end of the container.
  611. //!
  612. //! @param args The arguments of the constructor of the new element which will be created at the end of the container.
  613. //!
  614. //! @par Throws
  615. //! If in-place constructor throws or Value's move constructor throws.
  616. //!
  617. //! @par Complexity
  618. //! Constant O(1).
  619. template<class ...Args>
  620. void emplace_back(Args &&...args);
  621. //! @pre
  622. //! @li \c p must be a valid iterator of \c *this in range <tt>[begin(), end()]</tt>
  623. //! @li <tt>size() < capacity()</tt>
  624. //!
  625. //! @brief Inserts a Value constructed with
  626. //! \c std::forward<Args>(args)... before p
  627. //!
  628. //! @param p The position at which new elements will be inserted.
  629. //! @param args The arguments of the constructor of the new element.
  630. //!
  631. //! @par Throws
  632. //! If in-place constructor throws or if Value's move constructor or move assignment throws.
  633. //!
  634. //! @par Complexity
  635. //! Constant or linear.
  636. template<class ...Args>
  637. iterator emplace(const_iterator p, Args &&...args);
  638. //! @brief Removes all elements from the container.
  639. //!
  640. //! @par Throws
  641. //! Nothing.
  642. //!
  643. //! @par Complexity
  644. //! Constant O(1).
  645. void clear() BOOST_NOEXCEPT_OR_NOTHROW;
  646. //! @pre <tt>i < size()</tt>
  647. //!
  648. //! @brief Returns reference to the i-th element.
  649. //!
  650. //! @param i The element's index.
  651. //!
  652. //! @return reference to the i-th element
  653. //! from the beginning of the container.
  654. //!
  655. //! @par Throws
  656. //! \c std::out_of_range exception by default.
  657. //!
  658. //! @par Complexity
  659. //! Constant O(1).
  660. reference at(size_type i);
  661. //! @pre <tt>i < size()</tt>
  662. //!
  663. //! @brief Returns const reference to the i-th element.
  664. //!
  665. //! @param i The element's index.
  666. //!
  667. //! @return const reference to the i-th element
  668. //! from the beginning of the container.
  669. //!
  670. //! @par Throws
  671. //! \c std::out_of_range exception by default.
  672. //!
  673. //! @par Complexity
  674. //! Constant O(1).
  675. const_reference at(size_type i) const;
  676. //! @pre <tt>i < size()</tt>
  677. //!
  678. //! @brief Returns reference to the i-th element.
  679. //!
  680. //! @param i The element's index.
  681. //!
  682. //! @return reference to the i-th element
  683. //! from the beginning of the container.
  684. //!
  685. //! @par Throws
  686. //! Nothing by default.
  687. //!
  688. //! @par Complexity
  689. //! Constant O(1).
  690. reference operator[](size_type i);
  691. //! @pre <tt>i < size()</tt>
  692. //!
  693. //! @brief Returns const reference to the i-th element.
  694. //!
  695. //! @param i The element's index.
  696. //!
  697. //! @return const reference to the i-th element
  698. //! from the beginning of the container.
  699. //!
  700. //! @par Throws
  701. //! Nothing by default.
  702. //!
  703. //! @par Complexity
  704. //! Constant O(1).
  705. const_reference operator[](size_type i) const;
  706. //! @pre <tt>i =< size()</tt>
  707. //!
  708. //! @brief Returns a iterator to the i-th element.
  709. //!
  710. //! @param i The element's index.
  711. //!
  712. //! @return a iterator to the i-th element.
  713. //!
  714. //! @par Throws
  715. //! Nothing by default.
  716. //!
  717. //! @par Complexity
  718. //! Constant O(1).
  719. iterator nth(size_type i);
  720. //! @pre <tt>i =< size()</tt>
  721. //!
  722. //! @brief Returns a const_iterator to the i-th element.
  723. //!
  724. //! @param i The element's index.
  725. //!
  726. //! @return a const_iterator to the i-th element.
  727. //!
  728. //! @par Throws
  729. //! Nothing by default.
  730. //!
  731. //! @par Complexity
  732. //! Constant O(1).
  733. const_iterator nth(size_type i) const;
  734. //! @pre <tt>begin() <= p <= end()</tt>
  735. //!
  736. //! @brief Returns the index of the element pointed by p.
  737. //!
  738. //! @param p An iterator to the element.
  739. //!
  740. //! @return The index of the element pointed by p.
  741. //!
  742. //! @par Throws
  743. //! Nothing by default.
  744. //!
  745. //! @par Complexity
  746. //! Constant O(1).
  747. size_type index_of(iterator p);
  748. //! @pre <tt>begin() <= p <= end()</tt>
  749. //!
  750. //! @brief Returns the index of the element pointed by p.
  751. //!
  752. //! @param p A const_iterator to the element.
  753. //!
  754. //! @return a const_iterator to the i-th element.
  755. //!
  756. //! @par Throws
  757. //! Nothing by default.
  758. //!
  759. //! @par Complexity
  760. //! Constant O(1).
  761. size_type index_of(const_iterator p) const;
  762. //! @pre \c !empty()
  763. //!
  764. //! @brief Returns reference to the first element.
  765. //!
  766. //! @return reference to the first element
  767. //! from the beginning of the container.
  768. //!
  769. //! @par Throws
  770. //! Nothing by default.
  771. //!
  772. //! @par Complexity
  773. //! Constant O(1).
  774. reference front();
  775. //! @pre \c !empty()
  776. //!
  777. //! @brief Returns const reference to the first element.
  778. //!
  779. //! @return const reference to the first element
  780. //! from the beginning of the container.
  781. //!
  782. //! @par Throws
  783. //! Nothing by default.
  784. //!
  785. //! @par Complexity
  786. //! Constant O(1).
  787. const_reference front() const;
  788. //! @pre \c !empty()
  789. //!
  790. //! @brief Returns reference to the last element.
  791. //!
  792. //! @return reference to the last element
  793. //! from the beginning of the container.
  794. //!
  795. //! @par Throws
  796. //! Nothing by default.
  797. //!
  798. //! @par Complexity
  799. //! Constant O(1).
  800. reference back();
  801. //! @pre \c !empty()
  802. //!
  803. //! @brief Returns const reference to the first element.
  804. //!
  805. //! @return const reference to the last element
  806. //! from the beginning of the container.
  807. //!
  808. //! @par Throws
  809. //! Nothing by default.
  810. //!
  811. //! @par Complexity
  812. //! Constant O(1).
  813. const_reference back() const;
  814. //! @brief Pointer such that <tt>[data(), data() + size())</tt> is a valid range.
  815. //! For a non-empty vector <tt>data() == &front()</tt>.
  816. //!
  817. //! @par Throws
  818. //! Nothing.
  819. //!
  820. //! @par Complexity
  821. //! Constant O(1).
  822. Value * data() BOOST_NOEXCEPT_OR_NOTHROW;
  823. //! @brief Const pointer such that <tt>[data(), data() + size())</tt> is a valid range.
  824. //! For a non-empty vector <tt>data() == &front()</tt>.
  825. //!
  826. //! @par Throws
  827. //! Nothing.
  828. //!
  829. //! @par Complexity
  830. //! Constant O(1).
  831. const Value * data() const BOOST_NOEXCEPT_OR_NOTHROW;
  832. //! @brief Returns iterator to the first element.
  833. //!
  834. //! @return iterator to the first element contained in the vector.
  835. //!
  836. //! @par Throws
  837. //! Nothing.
  838. //!
  839. //! @par Complexity
  840. //! Constant O(1).
  841. iterator begin() BOOST_NOEXCEPT_OR_NOTHROW;
  842. //! @brief Returns const iterator to the first element.
  843. //!
  844. //! @return const_iterator to the first element contained in the vector.
  845. //!
  846. //! @par Throws
  847. //! Nothing.
  848. //!
  849. //! @par Complexity
  850. //! Constant O(1).
  851. const_iterator begin() const BOOST_NOEXCEPT_OR_NOTHROW;
  852. //! @brief Returns const iterator to the first element.
  853. //!
  854. //! @return const_iterator to the first element contained in the vector.
  855. //!
  856. //! @par Throws
  857. //! Nothing.
  858. //!
  859. //! @par Complexity
  860. //! Constant O(1).
  861. const_iterator cbegin() const BOOST_NOEXCEPT_OR_NOTHROW;
  862. //! @brief Returns iterator to the one after the last element.
  863. //!
  864. //! @return iterator pointing to the one after the last element contained in the vector.
  865. //!
  866. //! @par Throws
  867. //! Nothing.
  868. //!
  869. //! @par Complexity
  870. //! Constant O(1).
  871. iterator end() BOOST_NOEXCEPT_OR_NOTHROW;
  872. //! @brief Returns const iterator to the one after the last element.
  873. //!
  874. //! @return const_iterator pointing to the one after the last element contained in the vector.
  875. //!
  876. //! @par Throws
  877. //! Nothing.
  878. //!
  879. //! @par Complexity
  880. //! Constant O(1).
  881. const_iterator end() const BOOST_NOEXCEPT_OR_NOTHROW;
  882. //! @brief Returns const iterator to the one after the last element.
  883. //!
  884. //! @return const_iterator pointing to the one after the last element contained in the vector.
  885. //!
  886. //! @par Throws
  887. //! Nothing.
  888. //!
  889. //! @par Complexity
  890. //! Constant O(1).
  891. const_iterator cend() const BOOST_NOEXCEPT_OR_NOTHROW;
  892. //! @brief Returns reverse iterator to the first element of the reversed container.
  893. //!
  894. //! @return reverse_iterator pointing to the beginning
  895. //! of the reversed static_vector.
  896. //!
  897. //! @par Throws
  898. //! Nothing.
  899. //!
  900. //! @par Complexity
  901. //! Constant O(1).
  902. reverse_iterator rbegin() BOOST_NOEXCEPT_OR_NOTHROW;
  903. //! @brief Returns const reverse iterator to the first element of the reversed container.
  904. //!
  905. //! @return const_reverse_iterator pointing to the beginning
  906. //! of the reversed static_vector.
  907. //!
  908. //! @par Throws
  909. //! Nothing.
  910. //!
  911. //! @par Complexity
  912. //! Constant O(1).
  913. const_reverse_iterator rbegin() const BOOST_NOEXCEPT_OR_NOTHROW;
  914. //! @brief Returns const reverse iterator to the first element of the reversed container.
  915. //!
  916. //! @return const_reverse_iterator pointing to the beginning
  917. //! of the reversed static_vector.
  918. //!
  919. //! @par Throws
  920. //! Nothing.
  921. //!
  922. //! @par Complexity
  923. //! Constant O(1).
  924. const_reverse_iterator crbegin() const BOOST_NOEXCEPT_OR_NOTHROW;
  925. //! @brief Returns reverse iterator to the one after the last element of the reversed container.
  926. //!
  927. //! @return reverse_iterator pointing to the one after the last element
  928. //! of the reversed static_vector.
  929. //!
  930. //! @par Throws
  931. //! Nothing.
  932. //!
  933. //! @par Complexity
  934. //! Constant O(1).
  935. reverse_iterator rend() BOOST_NOEXCEPT_OR_NOTHROW;
  936. //! @brief Returns const reverse iterator to the one after the last element of the reversed container.
  937. //!
  938. //! @return const_reverse_iterator pointing to the one after the last element
  939. //! of the reversed static_vector.
  940. //!
  941. //! @par Throws
  942. //! Nothing.
  943. //!
  944. //! @par Complexity
  945. //! Constant O(1).
  946. const_reverse_iterator rend() const BOOST_NOEXCEPT_OR_NOTHROW;
  947. //! @brief Returns const reverse iterator to the one after the last element of the reversed container.
  948. //!
  949. //! @return const_reverse_iterator pointing to the one after the last element
  950. //! of the reversed static_vector.
  951. //!
  952. //! @par Throws
  953. //! Nothing.
  954. //!
  955. //! @par Complexity
  956. //! Constant O(1).
  957. const_reverse_iterator crend() const BOOST_NOEXCEPT_OR_NOTHROW;
  958. //! @brief Returns container's capacity.
  959. //!
  960. //! @return container's capacity.
  961. //!
  962. //! @par Throws
  963. //! Nothing.
  964. //!
  965. //! @par Complexity
  966. //! Constant O(1).
  967. static size_type capacity() BOOST_NOEXCEPT_OR_NOTHROW;
  968. //! @brief Returns container's capacity.
  969. //!
  970. //! @return container's capacity.
  971. //!
  972. //! @par Throws
  973. //! Nothing.
  974. //!
  975. //! @par Complexity
  976. //! Constant O(1).
  977. static size_type max_size() BOOST_NOEXCEPT_OR_NOTHROW;
  978. //! @brief Returns the number of stored elements.
  979. //!
  980. //! @return Number of elements contained in the container.
  981. //!
  982. //! @par Throws
  983. //! Nothing.
  984. //!
  985. //! @par Complexity
  986. //! Constant O(1).
  987. size_type size() const BOOST_NOEXCEPT_OR_NOTHROW;
  988. //! @brief Queries if the container contains elements.
  989. //!
  990. //! @return true if the number of elements contained in the
  991. //! container is equal to 0.
  992. //!
  993. //! @par Throws
  994. //! Nothing.
  995. //!
  996. //! @par Complexity
  997. //! Constant O(1).
  998. bool empty() const BOOST_NOEXCEPT_OR_NOTHROW;
  999. #else
  1000. BOOST_CONTAINER_FORCEINLINE friend void swap(static_vector &x, static_vector &y)
  1001. {
  1002. x.swap(y);
  1003. }
  1004. #endif // BOOST_CONTAINER_DOXYGEN_INVOKED
  1005. };
  1006. #ifdef BOOST_CONTAINER_DOXYGEN_INVOKED
  1007. //! @brief Checks if contents of two static_vectors are equal.
  1008. //!
  1009. //! @ingroup static_vector_non_member
  1010. //!
  1011. //! @param x The first static_vector.
  1012. //! @param y The second static_vector.
  1013. //!
  1014. //! @return \c true if containers have the same size and elements in both containers are equal.
  1015. //!
  1016. //! @par Complexity
  1017. //! Linear O(N).
  1018. template<typename V, std::size_t C1, std::size_t C2>
  1019. bool operator== (static_vector<V, C1> const& x, static_vector<V, C2> const& y);
  1020. //! @brief Checks if contents of two static_vectors are not equal.
  1021. //!
  1022. //! @ingroup static_vector_non_member
  1023. //!
  1024. //! @param x The first static_vector.
  1025. //! @param y The second static_vector.
  1026. //!
  1027. //! @return \c true if containers have different size or elements in both containers are not equal.
  1028. //!
  1029. //! @par Complexity
  1030. //! Linear O(N).
  1031. template<typename V, std::size_t C1, std::size_t C2>
  1032. bool operator!= (static_vector<V, C1> const& x, static_vector<V, C2> const& y);
  1033. //! @brief Lexicographically compares static_vectors.
  1034. //!
  1035. //! @ingroup static_vector_non_member
  1036. //!
  1037. //! @param x The first static_vector.
  1038. //! @param y The second static_vector.
  1039. //!
  1040. //! @return \c true if x compares lexicographically less than y.
  1041. //!
  1042. //! @par Complexity
  1043. //! Linear O(N).
  1044. template<typename V, std::size_t C1, std::size_t C2>
  1045. bool operator< (static_vector<V, C1> const& x, static_vector<V, C2> const& y);
  1046. //! @brief Lexicographically compares static_vectors.
  1047. //!
  1048. //! @ingroup static_vector_non_member
  1049. //!
  1050. //! @param x The first static_vector.
  1051. //! @param y The second static_vector.
  1052. //!
  1053. //! @return \c true if y compares lexicographically less than x.
  1054. //!
  1055. //! @par Complexity
  1056. //! Linear O(N).
  1057. template<typename V, std::size_t C1, std::size_t C2>
  1058. bool operator> (static_vector<V, C1> const& x, static_vector<V, C2> const& y);
  1059. //! @brief Lexicographically compares static_vectors.
  1060. //!
  1061. //! @ingroup static_vector_non_member
  1062. //!
  1063. //! @param x The first static_vector.
  1064. //! @param y The second static_vector.
  1065. //!
  1066. //! @return \c true if y don't compare lexicographically less than x.
  1067. //!
  1068. //! @par Complexity
  1069. //! Linear O(N).
  1070. template<typename V, std::size_t C1, std::size_t C2>
  1071. bool operator<= (static_vector<V, C1> const& x, static_vector<V, C2> const& y);
  1072. //! @brief Lexicographically compares static_vectors.
  1073. //!
  1074. //! @ingroup static_vector_non_member
  1075. //!
  1076. //! @param x The first static_vector.
  1077. //! @param y The second static_vector.
  1078. //!
  1079. //! @return \c true if x don't compare lexicographically less than y.
  1080. //!
  1081. //! @par Complexity
  1082. //! Linear O(N).
  1083. template<typename V, std::size_t C1, std::size_t C2>
  1084. bool operator>= (static_vector<V, C1> const& x, static_vector<V, C2> const& y);
  1085. //! @brief Swaps contents of two static_vectors.
  1086. //!
  1087. //! This function calls static_vector::swap().
  1088. //!
  1089. //! @ingroup static_vector_non_member
  1090. //!
  1091. //! @param x The first static_vector.
  1092. //! @param y The second static_vector.
  1093. //!
  1094. //! @par Complexity
  1095. //! Linear O(N).
  1096. template<typename V, std::size_t C1, std::size_t C2>
  1097. inline void swap(static_vector<V, C1> & x, static_vector<V, C2> & y);
  1098. #else
  1099. template<typename V, std::size_t C1, std::size_t C2>
  1100. inline void swap(static_vector<V, C1> & x, static_vector<V, C2> & y
  1101. , typename container_detail::enable_if_c< C1 != C2>::type * = 0)
  1102. {
  1103. x.swap(y);
  1104. }
  1105. #endif // BOOST_CONTAINER_DOXYGEN_INVOKED
  1106. }} // namespace boost::container
  1107. #include <boost/container/detail/config_end.hpp>
  1108. #endif // BOOST_CONTAINER_STATIC_VECTOR_HPP