| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | // Copyright (C) 2003-2004 Jeremy B. Maitin-Shepard.
 | 
					
						
							| 
									
										
										
										
											2011-06-04 16:17:07 +00:00
										 |  |  | // Copyright (C) 2005-2011 Daniel James
 | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  | // Distributed under the Boost Software License, Version 1.0. (See accompanying
 | 
					
						
							|  |  |  | // file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef BOOST_UNORDERED_DETAIL_UNIQUE_HPP_INCLUDED
 | 
					
						
							|  |  |  | #define BOOST_UNORDERED_DETAIL_UNIQUE_HPP_INCLUDED
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | #if defined(_MSC_VER) && (_MSC_VER >= 1020)
 | 
					
						
							|  |  |  | # pragma once
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <boost/unordered/detail/table.hpp>
 | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  | #include <boost/unordered/detail/extract_key.hpp>
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | #include <boost/throw_exception.hpp>
 | 
					
						
							|  |  |  | #include <stdexcept>
 | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  | namespace boost { namespace unordered { namespace detail { | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-10 21:37:44 +00:00
										 |  |  |     template <typename A, typename T> struct unique_node; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     template <typename T> struct ptr_node; | 
					
						
							|  |  |  |     template <typename Types> struct table_impl; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-08 12:17:27 +00:00
										 |  |  |     template <typename A, typename T> | 
					
						
							| 
									
										
										
										
											2012-05-10 21:37:44 +00:00
										 |  |  |     struct unique_node : | 
					
						
							| 
									
										
										
										
											2012-05-06 12:29:24 +00:00
										 |  |  |         boost::unordered::detail::node_base< | 
					
						
							|  |  |  |             typename ::boost::unordered::detail::rebind_wrap< | 
					
						
							| 
									
										
										
										
											2012-05-10 21:37:44 +00:00
										 |  |  |                 A, unique_node<A, T> >::type::pointer | 
					
						
							| 
									
										
										
										
											2012-05-06 12:29:24 +00:00
										 |  |  |         >, | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         boost::unordered::detail::value_base<T> | 
					
						
							| 
									
										
										
										
											2010-05-06 20:12:40 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-10-08 12:17:27 +00:00
										 |  |  |         typedef typename ::boost::unordered::detail::rebind_wrap< | 
					
						
							| 
									
										
										
										
											2012-05-10 21:37:44 +00:00
										 |  |  |             A, unique_node<A, T> >::type::pointer link_pointer; | 
					
						
							| 
									
										
										
										
											2012-05-06 12:29:24 +00:00
										 |  |  |         typedef boost::unordered::detail::node_base<link_pointer> node_base; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         std::size_t hash_; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-06 12:29:24 +00:00
										 |  |  | #if BOOST_UNORDERED_DETAIL_FULL_CONSTRUCT
 | 
					
						
							|  |  |  |         template <BOOST_UNORDERED_EMPLACE_TEMPLATE> | 
					
						
							| 
									
										
										
										
											2012-07-08 11:55:57 +00:00
										 |  |  |         explicit unique_node(BOOST_UNORDERED_EMPLACE_ARGS) : | 
					
						
							| 
									
										
										
										
											2012-05-06 12:29:24 +00:00
										 |  |  |             node_base(), | 
					
						
							|  |  |  |             hash_(0) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             boost::unordered::detail::construct_impl( | 
					
						
							|  |  |  |                 this->value_ptr(), BOOST_UNORDERED_EMPLACE_FORWARD); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-10 21:37:44 +00:00
										 |  |  |         ~unique_node() { | 
					
						
							| 
									
										
										
										
											2012-05-06 12:29:24 +00:00
										 |  |  |             boost::unordered::detail::destroy(this->value_ptr()); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-07-08 11:55:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         unique_node(unique_node const&) { | 
					
						
							|  |  |  |             BOOST_ASSERT(false); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-05-06 12:29:24 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2012-05-10 21:37:44 +00:00
										 |  |  |         unique_node() : | 
					
						
							| 
									
										
										
										
											2012-05-06 12:29:24 +00:00
										 |  |  |             node_base(), | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             hash_(0) | 
					
						
							|  |  |  |         {} | 
					
						
							| 
									
										
										
										
											2012-05-06 12:29:24 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         void init(link_pointer) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-07-08 11:55:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     private: | 
					
						
							|  |  |  |         unique_node& operator=(unique_node const&); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     template <typename T> | 
					
						
							|  |  |  |     struct ptr_node : | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         boost::unordered::detail::value_base<T>, | 
					
						
							|  |  |  |         boost::unordered::detail::ptr_bucket | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         typedef boost::unordered::detail::ptr_bucket bucket_base; | 
					
						
							| 
									
										
										
										
											2012-05-06 12:29:24 +00:00
										 |  |  |         typedef bucket_base node_base; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         typedef ptr_bucket* link_pointer; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         std::size_t hash_; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-06 12:29:24 +00:00
										 |  |  | #if BOOST_UNORDERED_DETAIL_FULL_CONSTRUCT
 | 
					
						
							|  |  |  |         template <BOOST_UNORDERED_EMPLACE_TEMPLATE> | 
					
						
							| 
									
										
										
										
											2012-07-08 11:55:57 +00:00
										 |  |  |         explicit ptr_node(BOOST_UNORDERED_EMPLACE_ARGS) : | 
					
						
							| 
									
										
										
										
											2012-05-06 12:29:24 +00:00
										 |  |  |             bucket_base(), | 
					
						
							|  |  |  |             hash_(0) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             boost::unordered::detail::construct_impl( | 
					
						
							|  |  |  |                 this->value_ptr(), BOOST_UNORDERED_EMPLACE_FORWARD); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         ~ptr_node() { | 
					
						
							|  |  |  |             boost::unordered::detail::destroy(this->value_ptr()); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-07-08 11:55:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         ptr_node(ptr_node const&) { | 
					
						
							|  |  |  |             BOOST_ASSERT(false); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-05-06 12:29:24 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         ptr_node() : | 
					
						
							|  |  |  |             bucket_base(), | 
					
						
							|  |  |  |             hash_(0) | 
					
						
							|  |  |  |         {} | 
					
						
							| 
									
										
										
										
											2012-05-06 12:29:24 +00:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         void init(link_pointer) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-07-08 11:55:57 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     private: | 
					
						
							|  |  |  |         ptr_node& operator=(ptr_node const&); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // If the allocator uses raw pointers use ptr_node
 | 
					
						
							|  |  |  |     // Otherwise use node.
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-08 12:17:27 +00:00
										 |  |  |     template <typename A, typename T, typename NodePtr, typename BucketPtr> | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     struct pick_node2 | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2012-05-10 21:37:44 +00:00
										 |  |  |         typedef boost::unordered::detail::unique_node<A, T> node; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         typedef typename boost::unordered::detail::allocator_traits< | 
					
						
							|  |  |  |             typename boost::unordered::detail::rebind_wrap<A, node>::type | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         >::pointer node_pointer; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         typedef boost::unordered::detail::bucket<node_pointer> bucket; | 
					
						
							| 
									
										
										
										
											2011-10-08 12:17:27 +00:00
										 |  |  |         typedef node_pointer link_pointer; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     template <typename A, typename T> | 
					
						
							| 
									
										
										
										
											2011-10-08 12:17:27 +00:00
										 |  |  |     struct pick_node2<A, T, | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         boost::unordered::detail::ptr_node<T>*, | 
					
						
							|  |  |  |         boost::unordered::detail::ptr_bucket*> | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         typedef boost::unordered::detail::ptr_node<T> node; | 
					
						
							|  |  |  |         typedef boost::unordered::detail::ptr_bucket bucket; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         typedef bucket* link_pointer; | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     template <typename A, typename T> | 
					
						
							|  |  |  |     struct pick_node | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         typedef boost::unordered::detail::allocator_traits< | 
					
						
							|  |  |  |             typename boost::unordered::detail::rebind_wrap<A, | 
					
						
							|  |  |  |                 boost::unordered::detail::ptr_node<T> >::type | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         > tentative_node_traits; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         typedef boost::unordered::detail::allocator_traits< | 
					
						
							|  |  |  |             typename boost::unordered::detail::rebind_wrap<A, | 
					
						
							|  |  |  |                 boost::unordered::detail::ptr_bucket >::type | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         > tentative_bucket_traits; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         typedef pick_node2<A, T, | 
					
						
							|  |  |  |             typename tentative_node_traits::pointer, | 
					
						
							|  |  |  |             typename tentative_bucket_traits::pointer> pick; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         typedef typename pick::node node; | 
					
						
							|  |  |  |         typedef typename pick::bucket bucket; | 
					
						
							|  |  |  |         typedef typename pick::link_pointer link_pointer; | 
					
						
							|  |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |     template <typename A, typename T, typename H, typename P> | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     struct set | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |         typedef boost::unordered::detail::set<A, T, H, P> types; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |         typedef T value_type; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         typedef H hasher; | 
					
						
							|  |  |  |         typedef P key_equal; | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |         typedef T key_type; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |         typedef typename boost::unordered::detail::rebind_wrap< | 
					
						
							|  |  |  |                 A, value_type>::type allocator; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |         typedef boost::unordered::detail::allocator_traits<allocator> traits; | 
					
						
							|  |  |  |         typedef boost::unordered::detail::pick_node<allocator, value_type> pick; | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |         typedef typename pick::node node; | 
					
						
							|  |  |  |         typedef typename pick::bucket bucket; | 
					
						
							|  |  |  |         typedef typename pick::link_pointer link_pointer; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |         typedef boost::unordered::detail::table_impl<types> table; | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         typedef boost::unordered::detail::set_extractor<value_type> extractor; | 
					
						
							| 
									
										
										
										
											2012-02-18 15:47:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         typedef boost::unordered::detail::pick_policy::type policy; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |     template <typename A, typename K, typename M, typename H, typename P> | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     struct map | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |         typedef boost::unordered::detail::map<A, K, M, H, P> types; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |         typedef std::pair<K const, M> value_type; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         typedef H hasher; | 
					
						
							|  |  |  |         typedef P key_equal; | 
					
						
							|  |  |  |         typedef K key_type; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |         typedef typename boost::unordered::detail::rebind_wrap< | 
					
						
							|  |  |  |                 A, value_type>::type allocator; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-11-30 08:21:04 +00:00
										 |  |  |         typedef boost::unordered::detail::allocator_traits<allocator> traits; | 
					
						
							|  |  |  |         typedef boost::unordered::detail::pick_node<allocator, value_type> pick; | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |         typedef typename pick::node node; | 
					
						
							|  |  |  |         typedef typename pick::bucket bucket; | 
					
						
							|  |  |  |         typedef typename pick::link_pointer link_pointer; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |         typedef boost::unordered::detail::table_impl<types> table; | 
					
						
							|  |  |  |         typedef boost::unordered::detail::map_extractor<key_type, value_type> | 
					
						
							|  |  |  |             extractor; | 
					
						
							| 
									
										
										
										
											2012-02-18 15:47:59 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         typedef boost::unordered::detail::pick_policy::type policy; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     template <typename Types> | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |     struct table_impl : boost::unordered::detail::table<Types> | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         typedef boost::unordered::detail::table<Types> table; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         typedef typename table::value_type value_type; | 
					
						
							|  |  |  |         typedef typename table::bucket bucket; | 
					
						
							|  |  |  |         typedef typename table::buckets buckets; | 
					
						
							| 
									
										
										
										
											2012-04-08 15:28:26 +00:00
										 |  |  |         typedef typename table::policy policy; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         typedef typename table::node_pointer node_pointer; | 
					
						
							|  |  |  |         typedef typename table::node_allocator node_allocator; | 
					
						
							|  |  |  |         typedef typename table::node_allocator_traits node_allocator_traits; | 
					
						
							|  |  |  |         typedef typename table::bucket_pointer bucket_pointer; | 
					
						
							|  |  |  |         typedef typename table::link_pointer link_pointer; | 
					
						
							|  |  |  |         typedef typename table::previous_pointer previous_pointer; | 
					
						
							|  |  |  |         typedef typename table::hasher hasher; | 
					
						
							|  |  |  |         typedef typename table::key_equal key_equal; | 
					
						
							|  |  |  |         typedef typename table::key_type key_type; | 
					
						
							|  |  |  |         typedef typename table::node_constructor node_constructor; | 
					
						
							|  |  |  |         typedef typename table::extractor extractor; | 
					
						
							| 
									
										
										
										
											2011-10-28 17:42:51 +00:00
										 |  |  |         typedef typename table::iterator iterator; | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |         typedef typename table::c_iterator c_iterator; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-28 17:42:51 +00:00
										 |  |  |         typedef std::pair<iterator, bool> emplace_return; | 
					
						
							| 
									
										
										
										
											2010-05-06 20:12:40 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // Constructors
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         table_impl(std::size_t n, | 
					
						
							|  |  |  |                 hasher const& hf, | 
					
						
							|  |  |  |                 key_equal const& eq, | 
					
						
							|  |  |  |                 node_allocator const& a) | 
					
						
							|  |  |  |           : table(n, hf, eq, a) | 
					
						
							|  |  |  |         {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         table_impl(table_impl const& x) | 
					
						
							|  |  |  |           : table(x, node_allocator_traits:: | 
					
						
							| 
									
										
										
										
											2011-08-11 21:18:19 +00:00
										 |  |  |                 select_on_container_copy_construction(x.node_alloc())) {} | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         table_impl(table_impl const& x, | 
					
						
							|  |  |  |                 node_allocator const& a) | 
					
						
							|  |  |  |           : table(x, a) | 
					
						
							|  |  |  |         {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         table_impl(table_impl& x, | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |                 boost::unordered::detail::move_tag m) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |           : table(x, m) | 
					
						
							|  |  |  |         {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         table_impl(table_impl& x, | 
					
						
							|  |  |  |                 node_allocator const& a, | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |                 boost::unordered::detail::move_tag m) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |           : table(x, a, m) | 
					
						
							|  |  |  |         {} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Accessors
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         template <class Key, class Pred> | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |         iterator find_node_impl( | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |                 std::size_t key_hash, | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 Key const& k, | 
					
						
							|  |  |  |                 Pred const& eq) const | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:28:26 +00:00
										 |  |  |             std::size_t bucket_index = | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |                 policy::to_bucket(this->bucket_count_, key_hash); | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             iterator n = this->get_start(bucket_index); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             for (;;) | 
					
						
							|  |  |  |             { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 if (!n.node_) return n; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 std::size_t node_hash = n.node_->hash_; | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |                 if (key_hash == node_hash) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                     if (eq(k, this->get_key(*n))) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                         return n; | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |                 else | 
					
						
							|  |  |  |                 { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:28:26 +00:00
										 |  |  |                     if (policy::to_bucket(this->bucket_count_, node_hash) | 
					
						
							|  |  |  |                             != bucket_index) | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                         return iterator(); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 ++n; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         std::size_t count(key_type const& k) const | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             return this->find_node(k).node_ ? 1 : 0; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         value_type& at(key_type const& k) const | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             if (this->size_) { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 iterator it = this->find_node(k); | 
					
						
							|  |  |  |                 if (it.node_) return *it; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |             boost::throw_exception( | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 std::out_of_range("Unable to find key in unordered_map.")); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-28 17:42:51 +00:00
										 |  |  |         std::pair<iterator, iterator> | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             equal_range(key_type const& k) const | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             iterator n = this->find_node(k); | 
					
						
							|  |  |  |             iterator n2 = n; | 
					
						
							|  |  |  |             if (n2.node_) ++n2; | 
					
						
							|  |  |  |             return std::make_pair(n, n2); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-05-06 20:12:40 +00:00
										 |  |  |         // equals
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         bool equals(table_impl const& other) const | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             if(this->size_ != other.size_) return false; | 
					
						
							|  |  |  |             if(!this->size_) return true; | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             for(iterator n1 = this->get_start(); n1.node_; ++n1) | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  |             { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 iterator n2 = other.find_matching_node(n1); | 
					
						
							| 
									
										
										
										
											2011-08-31 22:23:01 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #if !defined(BOOST_UNORDERED_DEPRECATED_EQUALITY)
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 if (!n2.node_ || *n1 != *n2) | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  |                     return false; | 
					
						
							| 
									
										
										
										
											2011-08-31 22:23:01 +00:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 if (!n2.node_ || !extractor::compare_mapped(*n1, *n2)) | 
					
						
							| 
									
										
										
										
											2011-08-31 22:23:01 +00:00
										 |  |  |                     return false; | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							|  |  |  |             return true; | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         // Emplace/Insert
 | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |         inline iterator add_node( | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |                 node_constructor& a, | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |                 std::size_t key_hash) | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             node_pointer n = a.release(); | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             n->hash_ = key_hash; | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2012-04-08 15:28:26 +00:00
										 |  |  |             bucket_pointer b = this->get_bucket( | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |                 policy::to_bucket(this->bucket_count_, key_hash)); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             if (!b->next_) | 
					
						
							|  |  |  |             { | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 previous_pointer start_node = this->get_previous_start(); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |                  | 
					
						
							|  |  |  |                 if (start_node->next_) { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:28:26 +00:00
										 |  |  |                     this->get_bucket(policy::to_bucket(this->bucket_count_, | 
					
						
							| 
									
										
										
										
											2012-02-18 15:47:59 +00:00
										 |  |  |                         static_cast<node_pointer>(start_node->next_)->hash_) | 
					
						
							|  |  |  |                     )->next_ = n; | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |                 } | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |                 b->next_ = start_node; | 
					
						
							|  |  |  |                 n->next_ = start_node->next_; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 start_node->next_ = static_cast<link_pointer>(n); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |             else | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 n->next_ = b->next_->next_; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 b->next_->next_ = static_cast<link_pointer>(n); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             } | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             ++this->size_; | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             return iterator(n); | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         value_type& operator[](key_type const& k) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2011-09-02 08:28:19 +00:00
										 |  |  |             typedef typename value_type::second_type mapped_type; | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             std::size_t key_hash = this->hash(k); | 
					
						
							|  |  |  |             iterator pos = this->find_node(key_hash, k); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             if (pos.node_) return *pos; | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							|  |  |  |             // Create the node before rehashing in case it throws an
 | 
					
						
							|  |  |  |             // exception (need strong safety in such a case).
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             node_constructor a(this->node_alloc()); | 
					
						
							|  |  |  |             a.construct_node(); | 
					
						
							| 
									
										
										
										
											2012-07-08 11:53:16 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             a.construct_value(BOOST_UNORDERED_EMPLACE_ARGS3( | 
					
						
							|  |  |  |                 boost::unordered::piecewise_construct, | 
					
						
							|  |  |  |                 boost::make_tuple(k), | 
					
						
							|  |  |  |                 boost::make_tuple())); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             this->reserve_for_insert(this->size_ + 1); | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             return *add_node(a, key_hash); | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-02 08:28:52 +00:00
										 |  |  | #if defined(BOOST_NO_RVALUE_REFERENCES)
 | 
					
						
							| 
									
										
										
										
											2012-06-28 20:58:56 +00:00
										 |  |  | #   if defined(BOOST_NO_VARIADIC_TEMPLATES)
 | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |         emplace_return emplace(boost::unordered::detail::emplace_args1< | 
					
						
							|  |  |  |                 boost::unordered::detail::please_ignore_this_overload> const&) | 
					
						
							| 
									
										
										
										
											2011-09-02 08:28:52 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |             BOOST_ASSERT(false); | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             return emplace_return(this->begin(), false); | 
					
						
							| 
									
										
										
										
											2011-09-02 08:28:52 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2012-06-28 20:58:56 +00:00
										 |  |  | #   else
 | 
					
						
							|  |  |  |         emplace_return emplace( | 
					
						
							|  |  |  |                 boost::unordered::detail::please_ignore_this_overload const&) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             BOOST_ASSERT(false); | 
					
						
							|  |  |  |             return emplace_return(this->begin(), false); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | #   endif
 | 
					
						
							| 
									
										
										
										
											2011-09-02 08:28:52 +00:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         template <BOOST_UNORDERED_EMPLACE_TEMPLATE> | 
					
						
							|  |  |  |         emplace_return emplace(BOOST_UNORDERED_EMPLACE_ARGS) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-06-28 20:58:56 +00:00
										 |  |  | #if !defined(BOOST_NO_VARIADIC_TEMPLATES)
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             return emplace_impl( | 
					
						
							|  |  |  |                 extractor::extract(BOOST_UNORDERED_EMPLACE_FORWARD), | 
					
						
							|  |  |  |                 BOOST_UNORDERED_EMPLACE_FORWARD); | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             return emplace_impl( | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 extractor::extract(args.a0, args.a1), | 
					
						
							|  |  |  |                 BOOST_UNORDERED_EMPLACE_FORWARD); | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-06-28 20:58:56 +00:00
										 |  |  | #if defined(BOOST_NO_VARIADIC_TEMPLATES)
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         template <typename A0> | 
					
						
							|  |  |  |         emplace_return emplace( | 
					
						
							|  |  |  |                 boost::unordered::detail::emplace_args1<A0> const& args) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return emplace_impl(extractor::extract(args.a0), args); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         template <BOOST_UNORDERED_EMPLACE_TEMPLATE> | 
					
						
							|  |  |  |         emplace_return emplace_impl(key_type const& k, | 
					
						
							|  |  |  |             BOOST_UNORDERED_EMPLACE_ARGS) | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             std::size_t key_hash = this->hash(k); | 
					
						
							|  |  |  |             iterator pos = this->find_node(key_hash, k); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             if (pos.node_) return emplace_return(pos, false); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  |             // Create the node before rehashing in case it throws an
 | 
					
						
							|  |  |  |             // exception (need strong safety in such a case).
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             node_constructor a(this->node_alloc()); | 
					
						
							|  |  |  |             a.construct_node(); | 
					
						
							|  |  |  |             a.construct_value(BOOST_UNORDERED_EMPLACE_FORWARD); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  |             // reserve has basic exception safety if the hash function
 | 
					
						
							|  |  |  |             // throws, strong otherwise.
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             this->reserve_for_insert(this->size_ + 1); | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             return emplace_return(this->add_node(a, key_hash), true); | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         emplace_return emplace_impl_with_node(node_constructor& a) | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             key_type const& k = this->get_key(a.value()); | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             std::size_t key_hash = this->hash(k); | 
					
						
							|  |  |  |             iterator pos = this->find_node(key_hash, k); | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             if (pos.node_) return emplace_return(pos, false); | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             // reserve has basic exception safety if the hash function
 | 
					
						
							|  |  |  |             // throws, strong otherwise.
 | 
					
						
							|  |  |  |             this->reserve_for_insert(this->size_ + 1); | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             return emplace_return(this->add_node(a, key_hash), true); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         template <BOOST_UNORDERED_EMPLACE_TEMPLATE> | 
					
						
							|  |  |  |         emplace_return emplace_impl(no_key, BOOST_UNORDERED_EMPLACE_ARGS) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             // Don't have a key, so construct the node first in order
 | 
					
						
							|  |  |  |             // to be able to lookup the position.
 | 
					
						
							|  |  |  |             node_constructor a(this->node_alloc()); | 
					
						
							|  |  |  |             a.construct_node(); | 
					
						
							|  |  |  |             a.construct_value(BOOST_UNORDERED_EMPLACE_FORWARD); | 
					
						
							|  |  |  |             return emplace_impl_with_node(a); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         ////////////////////////////////////////////////////////////////////////
 | 
					
						
							|  |  |  |         // Insert range methods
 | 
					
						
							|  |  |  |         //
 | 
					
						
							|  |  |  |         // if hash function throws, or inserting > 1 element, basic exception
 | 
					
						
							|  |  |  |         // safety strong otherwise
 | 
					
						
							| 
									
										
										
										
											2010-10-21 20:23:37 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         template <class InputIt> | 
					
						
							|  |  |  |         void insert_range(InputIt i, InputIt j) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             if(i != j) | 
					
						
							|  |  |  |                 return insert_range_impl(extractor::extract(*i), i, j); | 
					
						
							| 
									
										
										
										
											2010-10-21 20:23:37 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         template <class InputIt> | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         void insert_range_impl(key_type const& k, InputIt i, InputIt j) | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             node_constructor a(this->node_alloc()); | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:29 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             // Special case for empty buckets so that we can use
 | 
					
						
							|  |  |  |             // max_load_ (which isn't valid when buckets_ is null).
 | 
					
						
							|  |  |  |             if (!this->buckets_) { | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 insert_range_empty(a, k, i, j); | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:29 +00:00
										 |  |  |                 if (++i == j) return; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             do { | 
					
						
							|  |  |  |                 // Note: can't use get_key as '*i' might not be value_type - it
 | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |                 // could be a pair with first_types as key_type without const or
 | 
					
						
							|  |  |  |                 // a different second_type.
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |                 //
 | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |                 // TODO: Might be worth storing the value_type instead of the
 | 
					
						
							|  |  |  |                 // key here. Could be more efficient if '*i' is expensive. Could
 | 
					
						
							|  |  |  |                 // be less efficient if copying the full value_type is
 | 
					
						
							|  |  |  |                 // expensive.
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |                 insert_range_impl2(a, extractor::extract(*i), i, j); | 
					
						
							|  |  |  |             } while(++i != j); | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:29 +00:00
										 |  |  |         template <class InputIt> | 
					
						
							|  |  |  |         void insert_range_empty(node_constructor& a, key_type const& k, | 
					
						
							|  |  |  |             InputIt i, InputIt j) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             std::size_t key_hash = this->hash(k); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             a.construct_node(); | 
					
						
							|  |  |  |             a.construct_value2(*i); | 
					
						
							|  |  |  |             this->reserve_for_insert(this->size_ + | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |                 boost::unordered::detail::insert_size(i, j)); | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             this->add_node(a, key_hash); | 
					
						
							| 
									
										
										
										
											2011-08-14 18:53:29 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         template <class InputIt> | 
					
						
							|  |  |  |         void insert_range_impl2(node_constructor& a, key_type const& k, | 
					
						
							|  |  |  |             InputIt i, InputIt j) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             // No side effects in this initial code
 | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             std::size_t key_hash = this->hash(k); | 
					
						
							|  |  |  |             iterator pos = this->find_node(key_hash, k); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             if (!pos.node_) { | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 a.construct_node(); | 
					
						
							|  |  |  |                 a.construct_value2(*i); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2012-05-07 18:10:04 +00:00
										 |  |  |                 if(this->size_ + 1 > this->max_load_) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                     this->reserve_for_insert(this->size_ + | 
					
						
							| 
									
										
										
										
											2011-10-06 08:03:25 +00:00
										 |  |  |                         boost::unordered::detail::insert_size(i, j)); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |      | 
					
						
							|  |  |  |                 // Nothing after this point can throw.
 | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |                 this->add_node(a, key_hash); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |         template <class InputIt> | 
					
						
							|  |  |  |         void insert_range_impl(no_key, InputIt i, InputIt j) | 
					
						
							|  |  |  |         { | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             node_constructor a(this->node_alloc()); | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |             do { | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 a.construct_node(); | 
					
						
							|  |  |  |                 a.construct_value2(*i); | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |                 emplace_impl_with_node(a); | 
					
						
							|  |  |  |             } while(++i != j); | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |         ////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         // Erase
 | 
					
						
							|  |  |  |         //
 | 
					
						
							|  |  |  |         // no throw
 | 
					
						
							| 
									
										
										
										
											2010-05-21 07:06:33 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         std::size_t erase_key(key_type const& k) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             if(!this->size_) return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             std::size_t key_hash = this->hash(k); | 
					
						
							| 
									
										
										
										
											2012-04-08 15:28:26 +00:00
										 |  |  |             std::size_t bucket_index = | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |                 policy::to_bucket(this->bucket_count_, key_hash); | 
					
						
							|  |  |  |             bucket_pointer this_bucket = this->get_bucket(bucket_index); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             previous_pointer prev = this_bucket->next_; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             if (!prev) return 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             for (;;) | 
					
						
							|  |  |  |             { | 
					
						
							|  |  |  |                 if (!prev->next_) return 0; | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |                 std::size_t node_hash = | 
					
						
							|  |  |  |                     static_cast<node_pointer>(prev->next_)->hash_; | 
					
						
							| 
									
										
										
										
											2012-04-08 15:28:26 +00:00
										 |  |  |                 if (policy::to_bucket(this->bucket_count_, node_hash) | 
					
						
							|  |  |  |                         != bucket_index) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                     return 0; | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |                 if (node_hash == key_hash && | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |                         this->key_eq()(k, this->get_key( | 
					
						
							|  |  |  |                         static_cast<node_pointer>(prev->next_)->value()))) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                     break; | 
					
						
							|  |  |  |                 prev = static_cast<previous_pointer>(prev->next_); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             node_pointer pos = static_cast<node_pointer>(prev->next_); | 
					
						
							|  |  |  |             node_pointer end = static_cast<node_pointer>(pos->next_); | 
					
						
							|  |  |  |             prev->next_ = pos->next_; | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             this->fix_buckets(this_bucket, prev, end); | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             return this->delete_nodes(c_iterator(pos), c_iterator(end)); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |         iterator erase(c_iterator r) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             BOOST_ASSERT(r.node_); | 
					
						
							|  |  |  |             iterator next(r.node_); | 
					
						
							|  |  |  |             ++next; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             bucket_pointer this_bucket = this->get_bucket( | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 policy::to_bucket(this->bucket_count_, r.node_->hash_)); | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             previous_pointer prev = unlink_node(*this_bucket, r.node_); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-05-07 10:57:35 +00:00
										 |  |  |             this->fix_buckets(this_bucket, prev, next.node_); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             this->delete_node(r); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             return next; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |         iterator erase_range(c_iterator r1, c_iterator r2) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         { | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             if (r1 == r2) return iterator(r2.node_); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:28:26 +00:00
										 |  |  |             std::size_t bucket_index = | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 policy::to_bucket(this->bucket_count_, r1.node_->hash_); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             previous_pointer prev = unlink_nodes( | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 *this->get_bucket(bucket_index), r1.node_, r2.node_); | 
					
						
							|  |  |  |             this->fix_buckets_range(bucket_index, prev, r1.node_, r2.node_); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             this->delete_nodes(r1, r2); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             return iterator(r2.node_); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         static previous_pointer unlink_node(bucket& b, node_pointer n) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             return unlink_nodes(b, n, static_cast<node_pointer>(n->next_)); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |         static previous_pointer unlink_nodes(bucket& b, | 
					
						
							|  |  |  |                 node_pointer begin, node_pointer end) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |             previous_pointer prev = b.next_; | 
					
						
							|  |  |  |             link_pointer begin_void = static_cast<link_pointer>(begin); | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |             while(prev->next_ != begin_void) | 
					
						
							|  |  |  |                 prev = static_cast<previous_pointer>(prev->next_); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             prev->next_ = static_cast<link_pointer>(end); | 
					
						
							|  |  |  |             return prev; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |         ////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         // copy_buckets_to
 | 
					
						
							|  |  |  |         //
 | 
					
						
							|  |  |  |         // Basic exception safety. If an exception is thrown this will
 | 
					
						
							|  |  |  |         // leave dst partially filled and the buckets unset.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         static void copy_buckets_to(buckets const& src, buckets& dst) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             BOOST_ASSERT(!dst.buckets_); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             dst.create_buckets(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             node_constructor a(dst.node_alloc()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             iterator n = src.get_start(); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             previous_pointer prev = dst.get_previous_start(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             while(n.node_) { | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 a.construct_node(); | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 a.construct_value2(*n); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 node_pointer node = a.release(); | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 node->hash_ = n.node_->hash_; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 prev->next_ = static_cast<link_pointer>(node); | 
					
						
							|  |  |  |                 ++dst.size_; | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 ++n; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 prev = place_in_bucket(dst, prev); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |         ////////////////////////////////////////////////////////////////////////
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         // move_buckets_to
 | 
					
						
							|  |  |  |         //
 | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |         // Basic exception safety. The source nodes are left in an unusable
 | 
					
						
							|  |  |  |         // state if an exception throws.
 | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         static void move_buckets_to(buckets& src, buckets& dst) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             BOOST_ASSERT(!dst.buckets_); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             dst.create_buckets(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             node_constructor a(dst.node_alloc()); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             iterator n = src.get_start(); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |             previous_pointer prev = dst.get_previous_start(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |             while (n.node_) { | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 a.construct_node(); | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 a.construct_value2(boost::move(*n)); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 node_pointer node = a.release(); | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 node->hash_ = n.node_->hash_; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |                 prev->next_ = static_cast<link_pointer>(node); | 
					
						
							|  |  |  |                 ++dst.size_; | 
					
						
							| 
									
										
										
										
											2012-04-08 15:30:14 +00:00
										 |  |  |                 ++n; | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |                 prev = place_in_bucket(dst, prev); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // strong otherwise exception safety
 | 
					
						
							|  |  |  |         void rehash_impl(std::size_t num_buckets) | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             BOOST_ASSERT(this->size_); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             buckets dst(this->node_alloc(), num_buckets); | 
					
						
							|  |  |  |             dst.create_buckets(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             previous_pointer src_start = this->get_previous_start(); | 
					
						
							|  |  |  |             previous_pointer dst_start = dst.get_previous_start(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             dst_start->next_ = src_start->next_; | 
					
						
							|  |  |  |             src_start->next_ = link_pointer(); | 
					
						
							|  |  |  |             dst.size_ = this->size_; | 
					
						
							|  |  |  |             this->size_ = 0; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             previous_pointer prev = dst.get_previous_start(); | 
					
						
							|  |  |  |             while (prev->next_) | 
					
						
							|  |  |  |                 prev = place_in_bucket(dst, prev); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             // Swap the new nodes back into the container and setup the
 | 
					
						
							|  |  |  |             // variables.
 | 
					
						
							|  |  |  |             dst.swap(*this); // no throw
 | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // Iterate through the nodes placing them in the correct buckets.
 | 
					
						
							|  |  |  |         // pre: prev->next_ is not null.
 | 
					
						
							| 
									
										
										
										
											2011-10-06 21:31:25 +00:00
										 |  |  |         static previous_pointer place_in_bucket(buckets& dst, | 
					
						
							|  |  |  |                 previous_pointer prev) | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  |         { | 
					
						
							|  |  |  |             node_pointer n = static_cast<node_pointer>(prev->next_); | 
					
						
							| 
									
										
										
										
											2012-04-08 15:28:26 +00:00
										 |  |  |             bucket_pointer b = dst.get_bucket( | 
					
						
							|  |  |  |                 buckets::to_bucket(dst.bucket_count_, n->hash_)); | 
					
						
							| 
									
										
										
										
											2011-10-05 19:45:14 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |             if (!b->next_) { | 
					
						
							|  |  |  |                 b->next_ = prev; | 
					
						
							|  |  |  |                 return static_cast<previous_pointer>(n); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |             else { | 
					
						
							|  |  |  |                 prev->next_ = n->next_; | 
					
						
							|  |  |  |                 n->next_ = b->next_->next_; | 
					
						
							|  |  |  |                 b->next_->next_ = static_cast<link_pointer>(n); | 
					
						
							|  |  |  |                 return prev; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2011-04-16 18:47:33 +00:00
										 |  |  |     }; | 
					
						
							|  |  |  | }}} | 
					
						
							| 
									
										
										
										
											2009-09-20 21:55:15 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif
 |