123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713 |
- #ifndef BOOST_CONTAINER_CONTAINER_SMALL_VECTOR_HPP
- #define BOOST_CONTAINER_CONTAINER_SMALL_VECTOR_HPP
- #ifndef BOOST_CONFIG_HPP
- # include <boost/config.hpp>
- #endif
- #if defined(BOOST_HAS_PRAGMA_ONCE)
- # pragma once
- #endif
- #include <boost/container/detail/config_begin.hpp>
- #include <boost/container/detail/workaround.hpp>
- #include <boost/container/container_fwd.hpp>
- #include <boost/container/vector.hpp>
- #include <boost/container/allocator_traits.hpp>
- #include <boost/container/new_allocator.hpp> //new_allocator
- #include <boost/container/detail/type_traits.hpp>
- #include <boost/container/detail/version_type.hpp>
- #include <boost/move/adl_move_swap.hpp>
- #include <boost/move/iterator.hpp>
- #if defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES)
- #include <boost/move/detail/fwd_macros.hpp>
- #endif
- #if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
- #include <initializer_list> //for std::initializer_list
- #endif
- namespace boost {
- namespace container {
- namespace dtl{
- template<class Options>
- struct get_small_vector_opt
- {
- typedef Options type;
- };
- template<>
- struct get_small_vector_opt<void>
- {
- typedef small_vector_null_opt type;
- };
- template<class Options>
- struct get_vopt_from_svopt
- : get_small_vector_opt<Options>::type
- {
- typedef typename get_small_vector_opt<Options>::type options_t;
- typedef vector_opt< typename options_t::growth_factor_type, void> type;
- };
- template<>
- struct get_vopt_from_svopt<void>
- {
- typedef void type;
- };
- template <class T, class SecondaryAllocator, class Options>
- struct vector_for_small_vector
- {
- typedef vector
- < T
- , small_vector_allocator
- < T
- , typename allocator_traits<typename real_allocator<T, SecondaryAllocator>::type>::template portable_rebind_alloc<void>::type
- , Options>
- , typename dtl::get_vopt_from_svopt<Options>::type
- > type;
- };
- }
- template<class T, class VoidAllocator BOOST_CONTAINER_DOCONLY(= void), class Options BOOST_CONTAINER_DOCONLY(= void)>
- class small_vector_allocator
- : public allocator_traits<typename real_allocator<T, VoidAllocator>::type>::template portable_rebind_alloc<T>::type
- {
- typedef unsigned int allocation_type;
- #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
- private:
- typedef typename allocator_traits<typename real_allocator<T, VoidAllocator>::type>::template portable_rebind_alloc<T>::type allocator_type;
- BOOST_COPYABLE_AND_MOVABLE(small_vector_allocator)
- BOOST_CONTAINER_FORCEINLINE const allocator_type &as_base() const BOOST_NOEXCEPT
- { return static_cast<const allocator_type&>(*this); }
- BOOST_CONTAINER_FORCEINLINE allocator_type &as_base() BOOST_NOEXCEPT
- { return static_cast<allocator_type&>(*this); }
- #endif
- public:
- #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
- typedef allocator_traits<allocator_type> allocator_traits_type;
- #endif
- typedef typename allocator_traits<allocator_type>::value_type value_type;
- typedef typename allocator_traits<allocator_type>::pointer pointer;
- typedef typename allocator_traits<allocator_type>::const_pointer const_pointer;
- typedef typename allocator_traits<allocator_type>::reference reference;
- typedef typename allocator_traits<allocator_type>::const_reference const_reference;
- typedef typename allocator_traits<allocator_type>::size_type size_type;
- typedef typename allocator_traits<allocator_type>::difference_type difference_type;
- typedef typename allocator_traits<allocator_type>::void_pointer void_pointer;
- typedef typename allocator_traits<allocator_type>::const_void_pointer const_void_pointer;
- typedef typename allocator_traits<allocator_type>::propagate_on_container_copy_assignment propagate_on_container_copy_assignment;
- typedef typename allocator_traits<allocator_type>::propagate_on_container_move_assignment propagate_on_container_move_assignment;
- typedef typename allocator_traits<allocator_type>::propagate_on_container_swap propagate_on_container_swap;
-
- typedef BOOST_CONTAINER_IMPDEF(dtl::bool_<false>) is_always_equal;
-
- typedef BOOST_CONTAINER_IMPDEF(dtl::bool_<true>) is_partially_propagable;
- BOOST_CONTAINER_DOCIGN(typedef dtl::version_type<small_vector_allocator BOOST_CONTAINER_I 1> version;)
-
-
- template<class T2>
- struct rebind
- {
- typedef typename allocator_traits<allocator_type>::template portable_rebind_alloc<T2>::type other;
- };
- BOOST_CONTAINER_FORCEINLINE small_vector_allocator() BOOST_NOEXCEPT_IF(dtl::is_nothrow_default_constructible<allocator_type>::value)
- {}
-
-
- BOOST_CONTAINER_FORCEINLINE small_vector_allocator
- (const small_vector_allocator &other) BOOST_NOEXCEPT_OR_NOTHROW
- : allocator_type(other.as_base())
- {}
-
-
- BOOST_CONTAINER_FORCEINLINE small_vector_allocator
- (BOOST_RV_REF(small_vector_allocator) other) BOOST_NOEXCEPT_OR_NOTHROW
- : allocator_type(::boost::move(other.as_base()))
- {}
-
-
- template<class U, class OtherVoidAllocator, class OtherOptions>
- BOOST_CONTAINER_FORCEINLINE small_vector_allocator
- (const small_vector_allocator<U, OtherVoidAllocator, OtherOptions> &other) BOOST_NOEXCEPT_OR_NOTHROW
- : allocator_type(other.as_base())
- {}
-
-
- template<class U, class OtherVoidAllocator, class OtherOptions>
- BOOST_CONTAINER_FORCEINLINE small_vector_allocator
- (BOOST_RV_REF(small_vector_allocator<U BOOST_MOVE_I OtherVoidAllocator BOOST_MOVE_I OtherOptions>) other) BOOST_NOEXCEPT_OR_NOTHROW
- : allocator_type(::boost::move(other.as_base()))
- {}
-
-
- BOOST_CONTAINER_FORCEINLINE explicit small_vector_allocator
- (const allocator_type &other) BOOST_NOEXCEPT_OR_NOTHROW
- : allocator_type(other)
- {}
-
-
- BOOST_CONTAINER_FORCEINLINE small_vector_allocator &
- operator=(BOOST_COPY_ASSIGN_REF(small_vector_allocator) other) BOOST_NOEXCEPT_OR_NOTHROW
- { return static_cast<small_vector_allocator&>(this->allocator_type::operator=(other.as_base())); }
-
-
- BOOST_CONTAINER_FORCEINLINE small_vector_allocator &
- operator=(BOOST_RV_REF(small_vector_allocator) other) BOOST_NOEXCEPT_OR_NOTHROW
- { return static_cast<small_vector_allocator&>(this->allocator_type::operator=(::boost::move(other.as_base()))); }
-
-
- template<class U, class OtherVoidAllocator>
- BOOST_CONTAINER_FORCEINLINE small_vector_allocator &
- operator=(BOOST_COPY_ASSIGN_REF(small_vector_allocator<U BOOST_MOVE_I OtherVoidAllocator BOOST_MOVE_I Options>) other) BOOST_NOEXCEPT_OR_NOTHROW
- { return static_cast<small_vector_allocator&>(this->allocator_type::operator=(other.as_base())); }
-
-
- template<class U, class OtherVoidAllocator>
- BOOST_CONTAINER_FORCEINLINE small_vector_allocator &
- operator=(BOOST_RV_REF(small_vector_allocator<U BOOST_MOVE_I OtherVoidAllocator BOOST_MOVE_I Options>) other) BOOST_NOEXCEPT_OR_NOTHROW
- { return static_cast<small_vector_allocator&>(this->allocator_type::operator=(::boost::move(other.as_base()))); }
-
-
- BOOST_CONTAINER_FORCEINLINE small_vector_allocator &
- operator=(const allocator_type &other) BOOST_NOEXCEPT_OR_NOTHROW
- { return static_cast<small_vector_allocator&>(this->allocator_type::operator=(other)); }
-
- BOOST_CONTAINER_FORCEINLINE pointer allocate(size_type count, const_void_pointer hint = const_void_pointer())
- { return allocator_traits_type::allocate(this->as_base(), count, hint); }
-
-
- void deallocate(pointer ptr, size_type n) BOOST_NOEXCEPT_OR_NOTHROW
- {
- if(!this->is_internal_storage(ptr))
- allocator_traits_type::deallocate(this->as_base(), ptr, n);
- }
-
-
- BOOST_CONTAINER_FORCEINLINE size_type max_size() const BOOST_NOEXCEPT_OR_NOTHROW
- { return allocator_traits_type::max_size(this->as_base()); }
- small_vector_allocator select_on_container_copy_construction() const
- { return small_vector_allocator(allocator_traits_type::select_on_container_copy_construction(this->as_base())); }
- bool storage_is_unpropagable(pointer p) const
- { return this->is_internal_storage(p) || allocator_traits_type::storage_is_unpropagable(this->as_base(), p); }
-
-
- BOOST_CONTAINER_FORCEINLINE friend void swap(small_vector_allocator &l, small_vector_allocator &r) BOOST_NOEXCEPT_OR_NOTHROW
- { boost::adl_move_swap(l.as_base(), r.as_base()); }
-
-
- BOOST_CONTAINER_FORCEINLINE friend bool operator==(const small_vector_allocator &l, const small_vector_allocator &r) BOOST_NOEXCEPT_OR_NOTHROW
- { return allocator_traits_type::equal(l.as_base(), r.as_base()); }
-
-
- BOOST_CONTAINER_FORCEINLINE friend bool operator!=(const small_vector_allocator &l, const small_vector_allocator &r) BOOST_NOEXCEPT_OR_NOTHROW
- { return !(l == r); }
- #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
-
- private:
-
- typedef vector_alloc_holder< small_vector_allocator, size_type > vector_alloc_holder_t;
- typedef typename dtl::vector_for_small_vector<T, allocator_type, Options>::type vector_base;
- typedef small_vector_base<value_type, allocator_type, Options> derived_type;
- BOOST_CONTAINER_FORCEINLINE bool is_internal_storage(const_pointer p) const
- { return this->internal_storage() == p; }
- BOOST_CONTAINER_FORCEINLINE
- const_pointer internal_storage() const
- {
- const vector_alloc_holder_t &v_holder = static_cast<const vector_alloc_holder_t &>(*this);
- const vector_base &v_base = reinterpret_cast<const vector_base &>(v_holder);
- const derived_type &d_base = static_cast<const derived_type &>(v_base);
- return d_base.internal_storage();
- }
- BOOST_CONTAINER_FORCEINLINE
- pointer internal_storage()
- {
- vector_alloc_holder_t &v_holder = static_cast<vector_alloc_holder_t &>(*this);
- vector_base &v_base = reinterpret_cast<vector_base &>(v_holder);
- derived_type &d_base = static_cast<derived_type &>(v_base);
- return d_base.internal_storage();
- }
- #endif
- };
- template <class T, class SecondaryAllocator, class Options>
- class small_vector_base
- : public dtl::vector_for_small_vector<T, SecondaryAllocator, Options>::type
- {
- #ifndef BOOST_CONTAINER_DOXYGEN_INVOKEDVECTOR
- public:
-
-
- typedef typename real_allocator<T, SecondaryAllocator>::type secondary_allocator_t;
- typedef typename allocator_traits<secondary_allocator_t>::
- template portable_rebind_alloc<void>::type void_allocator_t;
- typedef typename dtl::get_small_vector_opt<Options>::type options_t;
- typedef typename dtl::vector_for_small_vector
- <T, SecondaryAllocator, Options>::type base_type;
- typedef typename allocator_traits<secondary_allocator_t>::pointer pointer;
- typedef typename allocator_traits<secondary_allocator_t>::const_pointer const_pointer;
- typedef typename allocator_traits<secondary_allocator_t>::void_pointer void_pointer;
- typedef typename allocator_traits<secondary_allocator_t>::const_void_pointer const_void_pointer;
- typedef small_vector_allocator<T, void_allocator_t, Options> allocator_type;
- private:
- BOOST_COPYABLE_AND_MOVABLE(small_vector_base)
- friend class small_vector_allocator<T, void_allocator_t, Options>;
- BOOST_CONTAINER_FORCEINLINE
- const_pointer internal_storage() const BOOST_NOEXCEPT_OR_NOTHROW
- {
- typedef typename boost::intrusive::pointer_traits<const_pointer>::template
- rebind_pointer<const unsigned char>::type const_char_pointer;
- const_void_pointer void_p = boost::intrusive::pointer_traits<const_char_pointer>::
- pointer_to(*m_storage_start.data);
- return boost::intrusive::pointer_traits<const_pointer>::static_cast_from(void_p);
- }
- BOOST_CONTAINER_FORCEINLINE
- pointer internal_storage() BOOST_NOEXCEPT_OR_NOTHROW
- {
- typedef typename boost::intrusive::pointer_traits<pointer>::template
- rebind_pointer<unsigned char>::type char_pointer;
- void_pointer void_p = boost::intrusive::pointer_traits<char_pointer>::
- pointer_to(*m_storage_start.data);
- return boost::intrusive::pointer_traits<pointer>::static_cast_from(void_p);
- }
- base_type &as_base() { return static_cast<base_type&>(*this); }
- const base_type &as_base() const { return static_cast<const base_type&>(*this); }
- static const std::size_t final_alignment =
- options_t::inplace_alignment ? options_t::inplace_alignment : dtl::alignment_of<T>::value;
- public:
- typedef typename dtl::aligned_storage
- <sizeof(T), final_alignment>::type storage_type;
- protected:
- BOOST_CONTAINER_FORCEINLINE explicit small_vector_base(initial_capacity_t, std::size_t initial_capacity)
- : base_type(initial_capacity_t(), this->internal_storage(), initial_capacity)
- {}
- template<class AllocFwd>
- BOOST_CONTAINER_FORCEINLINE explicit small_vector_base(initial_capacity_t, std::size_t capacity, BOOST_FWD_REF(AllocFwd) a)
- : base_type(initial_capacity_t(), this->internal_storage(), capacity, ::boost::forward<AllocFwd>(a))
- {}
-
- private:
-
- storage_type m_storage_start;
- #endif
- public:
- BOOST_CONTAINER_FORCEINLINE small_vector_base& operator=(BOOST_COPY_ASSIGN_REF(small_vector_base) other)
- { return static_cast<small_vector_base&>(this->base_type::operator=(static_cast<base_type const&>(other))); }
- BOOST_CONTAINER_FORCEINLINE small_vector_base& operator=(BOOST_RV_REF(small_vector_base) other)
- { return static_cast<small_vector_base&>(this->base_type::operator=(BOOST_MOVE_BASE(base_type, other))); }
- BOOST_CONTAINER_FORCEINLINE void swap(small_vector_base &other)
- { return this->base_type::swap(other); }
- #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
- protected:
- void move_construct_impl(base_type &x, const allocator_type &a)
- {
- if(base_type::is_propagable_from(x.get_stored_allocator(), x.data(), a, true)){
- this->steal_resources(x);
- }
- else{
- this->assign( boost::make_move_iterator(boost::movelib::iterator_to_raw_pointer(x.begin()))
- , boost::make_move_iterator(boost::movelib::iterator_to_raw_pointer(x.end ()))
- );
- x.clear();
- }
- }
- #endif
- };
- #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
- template<std::size_t Needed, std::size_t Hdr, std::size_t SSize, bool NeedsZero = (0u == Needed || Needed <= Hdr)>
- struct small_vector_storage_calculator_helper
- {
- static const std::size_t value = (Needed - Hdr - 1u)/SSize + 1u;
- };
- template<std::size_t Needed, std::size_t Hdr, std::size_t SSize>
- struct small_vector_storage_calculator_helper<Needed, Hdr, SSize, true>
- {
- static const std::size_t value = 0u;
- };
- template<class Storage, class Allocator, class T, std::size_t N, class Options>
- struct small_vector_storage_calculator
- {
- typedef small_vector_base<T, Allocator, Options> svh_type;
- typedef typename real_allocator<T, Allocator>::type value_allocator_t;
- typedef typename allocator_traits<value_allocator_t>::template portable_rebind_alloc<void>::type void_allocator_t;
- typedef typename dtl::vector_for_small_vector<T, void_allocator_t, Options>::type svhb_type;
- static const std::size_t s_align = dtl::alignment_of<Storage>::value;
- static const std::size_t s_size = sizeof(Storage);
- static const std::size_t svh_sizeof = sizeof(svh_type);
- static const std::size_t svhb_sizeof = sizeof(svhb_type);
- static const std::size_t s_start = ((svhb_sizeof-1)/s_align+1)*s_align;
- static const std::size_t header_bytes = svh_sizeof-s_start;
- static const std::size_t needed_bytes = sizeof(T)*N;
- static const std::size_t needed_extra_storages =
- small_vector_storage_calculator_helper<needed_bytes, header_bytes, s_size>::value;
- };
- template<class Storage, std::size_t N>
- struct small_vector_storage
- {
- Storage m_rest_of_storage[N];
- };
- template<class Storage>
- struct small_vector_storage<Storage, 0>
- {};
- template<class T, class Allocator, std::size_t N, class Options>
- struct small_vector_storage_definer
- {
- typedef T value_type;
- typedef typename small_vector_base<value_type, Allocator, Options>::storage_type storage_type;
- static const std::size_t needed_extra_storages =
- small_vector_storage_calculator<storage_type, Allocator, value_type, N, Options>::needed_extra_storages;
- typedef small_vector_storage<storage_type, needed_extra_storages> type;
- };
- #endif
- template <class T, std::size_t N, class Allocator BOOST_CONTAINER_DOCONLY(= void), class Options BOOST_CONTAINER_DOCONLY(= void) >
- class small_vector : public small_vector_base<T, Allocator, Options>
- #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
- , private small_vector_storage_definer<T, Allocator, N, Options>::type
- #endif
- {
- #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
- typedef small_vector_base<T, Allocator, Options> base_type;
- typedef typename small_vector_storage_definer
- <T, Allocator, N, Options>::type remaining_storage_holder;
- BOOST_COPYABLE_AND_MOVABLE(small_vector)
- typedef allocator_traits<typename base_type::allocator_type> allocator_traits_type;
- public:
- typedef small_vector_storage_calculator
- < typename small_vector_base<T, Allocator, Options>::storage_type
- , Allocator, T, N, Options> storage_test;
- static const std::size_t needed_extra_storages = storage_test::needed_extra_storages;
- static const std::size_t needed_bytes = storage_test::needed_bytes;
- static const std::size_t header_bytes = storage_test::header_bytes;
- static const std::size_t s_start = storage_test::s_start;
- typedef typename base_type::allocator_type allocator_type;
- typedef typename base_type::size_type size_type;
- typedef typename base_type::value_type value_type;
- BOOST_CONTAINER_FORCEINLINE static std::size_t internal_capacity()
- { return (sizeof(small_vector) - storage_test::s_start)/sizeof(T); }
- #endif
-
- static const size_type static_capacity = N;
- public:
- BOOST_CONTAINER_FORCEINLINE small_vector()
- BOOST_NOEXCEPT_IF(dtl::is_nothrow_default_constructible<allocator_type>::value)
- : base_type(initial_capacity_t(), internal_capacity())
- {}
- BOOST_CONTAINER_FORCEINLINE explicit small_vector(const allocator_type &a)
- : base_type(initial_capacity_t(), internal_capacity(), a)
- {}
- BOOST_CONTAINER_FORCEINLINE explicit small_vector(size_type n)
- : base_type(initial_capacity_t(), internal_capacity())
- { this->resize(n); }
- BOOST_CONTAINER_FORCEINLINE small_vector(size_type n, const allocator_type &a)
- : base_type(initial_capacity_t(), internal_capacity(), a)
- { this->resize(n); }
- BOOST_CONTAINER_FORCEINLINE small_vector(size_type n, default_init_t)
- : base_type(initial_capacity_t(), internal_capacity())
- { this->resize(n, default_init_t()); }
- BOOST_CONTAINER_FORCEINLINE small_vector(size_type n, default_init_t, const allocator_type &a)
- : base_type(initial_capacity_t(), internal_capacity(), a)
- { this->resize(n, default_init_t()); }
- BOOST_CONTAINER_FORCEINLINE small_vector(size_type n, const value_type &v)
- : base_type(initial_capacity_t(), internal_capacity())
- { this->resize(n, v); }
- BOOST_CONTAINER_FORCEINLINE small_vector(size_type n, const value_type &v, const allocator_type &a)
- : base_type(initial_capacity_t(), internal_capacity(), a)
- { this->resize(n, v); }
- template <class InIt>
- BOOST_CONTAINER_FORCEINLINE small_vector(InIt first, InIt last
- BOOST_CONTAINER_DOCIGN(BOOST_MOVE_I typename dtl::disable_if_c
- < dtl::is_convertible<InIt BOOST_MOVE_I size_type>::value
- BOOST_MOVE_I dtl::nat >::type * = 0)
- )
- : base_type(initial_capacity_t(), internal_capacity())
- { this->assign(first, last); }
- template <class InIt>
- BOOST_CONTAINER_FORCEINLINE small_vector(InIt first, InIt last, const allocator_type& a
- BOOST_CONTAINER_DOCIGN(BOOST_MOVE_I typename dtl::disable_if_c
- < dtl::is_convertible<InIt BOOST_MOVE_I size_type>::value
- BOOST_MOVE_I dtl::nat >::type * = 0)
- )
- : base_type(initial_capacity_t(), internal_capacity(), a)
- { this->assign(first, last); }
- BOOST_CONTAINER_FORCEINLINE small_vector(const small_vector &other)
- : base_type( initial_capacity_t(), internal_capacity()
- , allocator_traits_type::select_on_container_copy_construction(other.get_stored_allocator()))
- { this->assign(other.cbegin(), other.cend()); }
- BOOST_CONTAINER_FORCEINLINE small_vector(const small_vector &other, const allocator_type &a)
- : base_type(initial_capacity_t(), internal_capacity(), a)
- { this->assign(other.cbegin(), other.cend()); }
- BOOST_CONTAINER_FORCEINLINE explicit small_vector(const base_type &other)
- : base_type( initial_capacity_t(), internal_capacity()
- , allocator_traits_type::select_on_container_copy_construction(other.get_stored_allocator()))
- { this->assign(other.cbegin(), other.cend()); }
- BOOST_CONTAINER_FORCEINLINE explicit small_vector(BOOST_RV_REF(base_type) other)
- : base_type(initial_capacity_t(), internal_capacity(), ::boost::move(other.get_stored_allocator()))
- { this->move_construct_impl(other, other.get_stored_allocator()); }
- BOOST_CONTAINER_FORCEINLINE small_vector(BOOST_RV_REF(small_vector) other)
- BOOST_NOEXCEPT_IF(boost::container::dtl::is_nothrow_move_constructible<value_type>::value)
- : base_type(initial_capacity_t(), internal_capacity(), ::boost::move(other.get_stored_allocator()))
- { this->move_construct_impl(other, other.get_stored_allocator()); }
- BOOST_CONTAINER_FORCEINLINE small_vector(BOOST_RV_REF(small_vector) other, const allocator_type &a)
- : base_type(initial_capacity_t(), internal_capacity(), a)
- { this->move_construct_impl(other, a); }
- #if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
- BOOST_CONTAINER_FORCEINLINE small_vector(std::initializer_list<value_type> il, const allocator_type& a = allocator_type())
- : base_type(initial_capacity_t(), internal_capacity(), a)
- {
- this->assign(il.begin(), il.end());
- }
- #endif
- BOOST_CONTAINER_FORCEINLINE small_vector& operator=(BOOST_COPY_ASSIGN_REF(small_vector) other)
- { return static_cast<small_vector&>(this->base_type::operator=(static_cast<base_type const&>(other))); }
- BOOST_CONTAINER_FORCEINLINE small_vector& operator=(BOOST_RV_REF(small_vector) other)
- BOOST_NOEXCEPT_IF(boost::container::dtl::is_nothrow_move_assignable<value_type>::value
- && (allocator_traits_type::propagate_on_container_move_assignment::value
- || allocator_traits_type::is_always_equal::value))
- { return static_cast<small_vector&>(this->base_type::operator=(BOOST_MOVE_BASE(base_type, other))); }
- BOOST_CONTAINER_FORCEINLINE small_vector& operator=(const base_type &other)
- { return static_cast<small_vector&>(this->base_type::operator=(other)); }
- BOOST_CONTAINER_FORCEINLINE small_vector& operator=(BOOST_RV_REF(base_type) other)
- { return static_cast<small_vector&>(this->base_type::operator=(boost::move(other))); }
- BOOST_CONTAINER_FORCEINLINE void swap(small_vector &other)
- { return this->base_type::swap(other); }
- };
- }}
- #ifndef BOOST_CONTAINER_DOXYGEN_INVOKED
- #endif
- #include <boost/container/detail/config_end.hpp>
- #endif
|