flat_map.hpp

来自「Boost provides free peer-reviewed portab」· HPP 代码 · 共 1,442 行 · 第 1/4 页

HPP
1,442
字号
   #ifndef BOOST_INTERPROCESS_RVALUE_REFERENCE   //! Effects: If there is no key equivalent to x in the flat_map, inserts    //!   value_type(x, T()) into the flat_map.   //!    //! Returns: A reference to the mapped_type corresponding to x in *this.   //!    //! Complexity: Logarithmic.   T &operator[](const key_type& k)    {      iterator i = lower_bound(k);      // i->first is greater than or equivalent to k.      if (i == end() || key_comp()(k, (*i).first))         i = insert(i, value_type(k, T()));      return (*i).second;   }   T &operator[](const detail::moved_object<key_type>& mk)    {      key_type &k = mk.get();      iterator i = lower_bound(k);      // i->first is greater than or equivalent to k.      if (i == end() || key_comp()(k, (*i).first))         i = insert(i, value_type(k, detail::move_impl(T())));      return (*i).second;   }   #else   //! Effects: If there is no key equivalent to x in the flat_map, inserts    //!   value_type(x, T()) into the flat_map.   //!    //! Returns: A reference to the mapped_type corresponding to x in *this.   //!    //! Complexity: Logarithmic.   T &operator[](key_type &&mk)    {      key_type &k = mk;      iterator i = lower_bound(k);      // i->first is greater than or equivalent to k.      if (i == end() || key_comp()(k, (*i).first))         i = insert(i, value_type(detail::forward_impl<key_type>(k), detail::move_impl(T())));      return (*i).second;   }   #endif   //! <b>Effects</b>: Swaps the contents of *this and x.   //!   If this->allocator_type() != x.allocator_type() allocators are also swapped.   //!   //! <b>Throws</b>: Nothing.   //!   //! <b>Complexity</b>: Constant.   void swap(flat_map<Key,T,Pred,Alloc>& x)       { m_flat_tree.swap(x.m_flat_tree); }   //! <b>Effects</b>: Swaps the contents of *this and x.   //!   If this->allocator_type() != x.allocator_type() allocators are also swapped.   //!   //! <b>Throws</b>: Nothing.   //!   //! <b>Complexity</b>: Constant.   #ifndef BOOST_INTERPROCESS_RVALUE_REFERENCE   void swap(const detail::moved_object<flat_map<Key,T,Pred,Alloc> >& x)       { m_flat_tree.swap(x.get().m_flat_tree); }   #else   void swap(flat_map<Key,T,Pred,Alloc> && x)       { m_flat_tree.swap(x.m_flat_tree); }   #endif   //! <b>Effects</b>: Inserts x if and only if there is no element in the container    //!   with key equivalent to the key of x.   //!   //! <b>Returns</b>: The bool component of the returned pair is true if and only    //!   if the insertion takes place, and the iterator component of the pair   //!   points to the element with key equivalent to the key of x.   //!   //! <b>Complexity</b>: Logarithmic search time plus linear insertion   //!   to the elements with bigger keys than x.   //!   //! <b>Note</b>: If an element it's inserted it might invalidate elements.   std::pair<iterator,bool> insert(const value_type& x)       { return force<std::pair<iterator,bool> >(         m_flat_tree.insert_unique(force<impl_value_type>(x))); }   //! <b>Effects</b>: Inserts a new value_type move constructed from the pair if and   //! only if there is no element in the container with key equivalent to the key of x.   //!   //! <b>Returns</b>: The bool component of the returned pair is true if and only    //!   if the insertion takes place, and the iterator component of the pair   //!   points to the element with key equivalent to the key of x.   //!   //! <b>Complexity</b>: Logarithmic search time plus linear insertion   //!   to the elements with bigger keys than x.   //!   //! <b>Note</b>: If an element it's inserted it might invalidate elements.   #ifndef BOOST_INTERPROCESS_RVALUE_REFERENCE   std::pair<iterator,bool> insert(const detail::moved_object<value_type>& x)       { return force<std::pair<iterator,bool> >(         m_flat_tree.insert_unique(force<impl_moved_value_type>(x))); }   #else   std::pair<iterator,bool> insert(value_type &&x)    {  return force<std::pair<iterator,bool> >(      m_flat_tree.insert_unique(detail::move_impl(force<impl_value_type>(x)))); }   #endif   //! <b>Effects</b>: Inserts a copy of x in the container if and only if there is    //!   no element in the container with key equivalent to the key of x.   //!   p is a hint pointing to where the insert should start to search.   //!   //! <b>Returns</b>: An iterator pointing to the element with key equivalent   //!   to the key of x.   //!   //! <b>Complexity</b>: Logarithmic search time (constant if x is inserted   //!   right before p) plus insertion linear to the elements with bigger keys than x.   //!   //! <b>Note</b>: If an element it's inserted it might invalidate elements.   iterator insert(const_iterator position, const value_type& x)      { return force_copy<iterator>(         m_flat_tree.insert_unique(force<impl_const_iterator>(position), force<impl_value_type>(x))); }   //! <b>Effects</b>: Inserts an element move constructed from x in the container.   //!   p is a hint pointing to where the insert should start to search.   //!   //! <b>Returns</b>: An iterator pointing to the element with key equivalent to the key of x.   //!   //! <b>Complexity</b>: Logarithmic search time (constant if x is inserted   //!   right before p) plus insertion linear to the elements with bigger keys than x.   //!   //! <b>Note</b>: If an element it's inserted it might invalidate elements.   #ifndef BOOST_INTERPROCESS_RVALUE_REFERENCE   iterator insert(const_iterator position, const detail::moved_object<value_type>& x)      { return force_copy<iterator>(         m_flat_tree.insert_unique(force<impl_const_iterator>(position), force<impl_moved_value_type>(x))); }   #else   iterator insert(const_iterator position, value_type &&x)      { return force_copy<iterator>(         m_flat_tree.insert_unique(force<impl_const_iterator>(position), detail::move_impl(force<impl_value_type>(x)))); }   #endif   //! <b>Requires</b>: i, j are not iterators into *this.   //!   //! <b>Effects</b>: inserts each element from the range [i,j) if and only    //!   if there is no element with key equivalent to the key of that element.   //!   //! <b>Complexity</b>: N log(size()+N) (N is the distance from i to j)   //!   search time plus N*size() insertion time.   //!   //! <b>Note</b>: If an element it's inserted it might invalidate elements.   template <class InputIterator>   void insert(InputIterator first, InputIterator last)    {  m_flat_tree.insert_unique(first, last);  }   #ifdef BOOST_INTERPROCESS_PERFECT_FORWARDING   //! <b>Effects</b>: Inserts an object of type T constructed with   //!   std::forward<Args>(args)... if and only if there is no element in the container    //!   with key equivalent to the key of x.   //!   //! <b>Returns</b>: The bool component of the returned pair is true if and only    //!   if the insertion takes place, and the iterator component of the pair   //!   points to the element with key equivalent to the key of x.   //!   //! <b>Complexity</b>: Logarithmic search time plus linear insertion   //!   to the elements with bigger keys than x.   //!   //! <b>Note</b>: If an element it's inserted it might invalidate elements.   template <class... Args>   iterator emplace(Args&&... args)   {  return force_copy<iterator>(m_flat_tree.emplace_unique(detail::forward_impl<Args>(args)...)); }   //! <b>Effects</b>: Inserts an object of type T constructed with   //!   std::forward<Args>(args)... in the container if and only if there is    //!   no element in the container with key equivalent to the key of x.   //!   p is a hint pointing to where the insert should start to search.   //!   //! <b>Returns</b>: An iterator pointing to the element with key equivalent   //!   to the key of x.   //!   //! <b>Complexity</b>: Logarithmic search time (constant if x is inserted   //!   right before p) plus insertion linear to the elements with bigger keys than x.   //!   //! <b>Note</b>: If an element it's inserted it might invalidate elements.   template <class... Args>   iterator emplace_hint(const_iterator hint, Args&&... args)   {  return force_copy<iterator>(m_flat_tree.emplace_hint_unique(force<impl_const_iterator>(hint), detail::forward_impl<Args>(args)...)); }   #else //#ifdef BOOST_INTERPROCESS_PERFECT_FORWARDING   iterator emplace()   {  return force_copy<iterator>(m_flat_tree.emplace_unique()); }   iterator emplace_hint(const_iterator hint)   {  return force_copy<iterator>(m_flat_tree.emplace_hint_unique(force<impl_const_iterator>(hint))); }   #define BOOST_PP_LOCAL_MACRO(n)                                                                    \   template<BOOST_PP_ENUM_PARAMS(n, class P)>                                                         \   iterator emplace(BOOST_PP_ENUM(n, BOOST_INTERPROCESS_PP_PARAM_LIST, _))                            \   {                                                                                                  \      return force_copy<iterator>(m_flat_tree.emplace_unique                                               \         (BOOST_PP_ENUM(n, BOOST_INTERPROCESS_PP_PARAM_FORWARD, _)));                                 \   }                                                                                                  \                                                                                                      \   template<BOOST_PP_ENUM_PARAMS(n, class P)>                                                         \   iterator emplace_hint(const_iterator hint, BOOST_PP_ENUM(n, BOOST_INTERPROCESS_PP_PARAM_LIST, _))  \   {                                                                                                  \      return force_copy<iterator>(m_flat_tree.emplace_hint_unique                                          \         (force<impl_const_iterator>(hint),                                                           \         BOOST_PP_ENUM(n, BOOST_INTERPROCESS_PP_PARAM_FORWARD, _)));                                  \   }                                                                                                  \   //!   #define BOOST_PP_LOCAL_LIMITS (1, BOOST_INTERPROCESS_MAX_CONSTRUCTOR_PARAMETERS)   #include BOOST_PP_LOCAL_ITERATE()   #endif   //#ifdef BOOST_INTERPROCESS_PERFECT_FORWARDING   //! <b>Effects</b>: Erases the element pointed to by position.   //!   //! <b>Returns</b>: Returns an iterator pointing to the element immediately   //!   following q prior to the element being erased. If no such element exists,    //!   returns end().   //!   //! <b>Complexity</b>: Linear to the elements with keys bigger than position   //!   //! <b>Note</b>: Invalidates elements with keys   //!   not less than the erased element.   iterator erase(const_iterator position)       { return force_copy<iterator>(m_flat_tree.erase(force<impl_const_iterator>(position))); }   //! <b>Effects</b>: Erases all elements in the container with key equivalent to x.   //!   //! <b>Returns</b>: Returns the number of erased elements.   //!   //! <b>Complexity</b>: Logarithmic search time plus erasure time   //!   linear to the elements with bigger keys.   size_type erase(const key_type& x)       { return m_flat_tree.erase(x); }   //! <b>Effects</b>: Erases all the elements in the range [first, last).   //!   //! <b>Returns</b>: Returns last.   //!   //! <b>Complexity</b>: size()*N where N is the distance from first to last.   //!   //! <b>Complexity</b>: Logarithmic search time plus erasure time   //!   linear to the elements with bigger keys.   iterator erase(const_iterator first, const_iterator last)      { return force_copy<iterator>(m_flat_tree.erase(force<impl_const_iterator>(first), force<impl_const_iterator>(last))); }   //! <b>Effects</b>: erase(a.begin(),a.end()).   //!   //! <b>Postcondition</b>: size() == 0.   //!   //! <b>Complexity</b>: linear in size().   void clear()       { m_flat_tree.clear(); }   //! <b>Effects</b>: Tries to deallocate the excess of memory created   //    with previous allocations. The size of the vector is unchanged   //!   //! <b>Throws</b>: If memory allocation throws, or T's copy constructor throws.   //!   //! <b>Complexity</b>: Linear to size().   void shrink_to_fit()      { m_flat_tree.shrink_to_fit(); }   //! <b>Returns</b>: An iterator pointing to an element with the key   //!   equivalent to x, or end() if such an element is not found.   //!   //! <b>Complexity</b>: Logarithmic.   iterator find(const key_type& x)       { return force_copy<iterator>(m_flat_tree.find(x)); }   //! <b>Returns</b>: A const_iterator pointing to an element with the key   //!   equivalent to x, or end() if such an element is not found.   //!   //! <b>Complexity</b>: Logarithmic.s   const_iterator find(const key_type& x) const       { return force<const_iterator>(m_flat_tree.find(x)); }   //! <b>Returns</b>: The number of elements with key equivalent to x.   //!   //! <b>Complexity</b>: log(size())+count(k)   size_type count(const key_type& x) const       {  return m_flat_tree.find(x) == m_flat_tree.end() ? 0 : 1;  }   //! <b>Returns</b>: An iterator pointing to the first element with key not less   //!   than k, or a.end() if such an element is not found.   //!   //! <b>Complexity</b>: Logarithmic   iterator lower_bound(const key_type& x)       {  return force_copy<iterator>(m_flat_tree.lower_bound(x)); }   //! <b>Returns</b>: A const iterator pointing to the first element with key not   //!   less than k, or a.end() if such an element is not found.   //!   //! <b>Complexity</b>: Logarithmic   const_iterator lower_bound(const key_type& x) const       {  return force<const_iterator>(m_flat_tree.lower_bound(x)); }   //! <b>Returns</b>: An iterator pointing to the first element with key not less   //!   than x, or end() if such an element is not found.   //!   //! <b>Complexity</b>: Logarithmic   iterator upper_bound(const key_type& x)       {  return force_copy<iterator>(m_flat_tree.upper_bound(x)); }   //! <b>Returns</b>: A const iterator pointing to the first element with key not   //!   less than x, or end() if such an element is not found.   //!   //! <b>Complexity</b>: Logarithmic   const_iterator upper_bound(const key_type& x) const       {  return force<const_iterator>(m_flat_tree.upper_bound(x)); }   //! <b>Effects</b>: Equivalent to std::make_pair(this->lower_bound(k), this->upper_bound(k)).   //!   //! <b>Complexity</b>: Logarithmic   std::pair<iterator,iterator> equal_range(const key_type& x)       {  return force<std::pair<iterator,iterator> >(m_flat_tree.equal_range(x)); }   //! <b>Effects</b>: Equivalent to std::make_pair(this->lower_bound(k), this->upper_bound(k)).   //!   //! <b>Complexity</b>: Logarithmic   std::pair<const_iterator,const_iterator> equal_range(const key_type& x) const       {  return force<std::pair<const_iterator,const_iterator> >(m_flat_tree.equal_range(x)); }   //! <b>Effects</b>: Number of elements for which memory has been allocated.   //!   capacity() is always greater than or equal to size().   //!    //! <b>Throws</b>: Nothing.   //!    //! <b>Complexity</b>: Constant.   size_type capacity() const                 { return m_flat_tree.capacity(); }   //! <b>Effects</b>: If n is less than or equal to capacity(), this call has no   //!   effect. Otherwise, it is a request for allocation of additional memory.   //!   If the request is successful, then capacity() is greater than or equal to   //!   n; otherwise, capacity() is unchanged. In either case, size() is unchanged.   //!    //! <b>Throws</b>: If memory allocation allocation throws or T's copy constructor throws.   //!   //! <b>Note</b>: If capacity() is less than "count", iterators and references to   //!   to values might be invalidated.   void reserve(size_type count)             { m_flat_tree.reserve(count);   }   /// @cond   template <class K1, class T1, class C1, class A1>   friend bool operator== (const flat_map<K1, T1, C1, A1>&,                           const flat_map<K1, T1, C1, A1>&);   template <class K1, class T1, class C1, class A1>   friend bool operator< (const flat_map<K1, T1, C1, A1>&,                           const flat_map<K1, T1, C1, A1>&);   /// @endcond};template <class Key, class T, class Pred, class Alloc>inline bool operator==(const flat_map<Key,T,Pred,Alloc>& x,                        const flat_map<Key,T,Pred,Alloc>& y)    {  return x.m_flat_tree == y.m_flat_tree;  }template <class Key, class T, class Pred, class Alloc>inline bool operator<(const flat_map<Key,T,Pred,Alloc>& x,                       const flat_map<Key,T,Pred,Alloc>& y) 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?