// Copyright 2005-2009 Daniel James. // 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) #if !defined(BOOST_UNORDERED_TEST_HELPERS_METAFUNCTIONS_HEADER) #define BOOST_UNORDERED_TEST_HELPERS_METAFUNCTIONS_HEADER #include #include #include #include #include namespace test { /* struct unordered_set_type { char x[100]; }; struct unordered_multiset_type { char x[200]; }; struct unordered_map_type { char x[300]; }; struct unordered_multimap_type { char x[400]; }; template unordered_set_type container_type( boost::unordered_set const*); template unordered_multiset_type container_type( boost::unordered_multiset const*); template unordered_map_type container_type( boost::unordered_map const*); template unordered_multimap_type container_type( boost::unordered_multimap const*); */ template struct is_set : public boost::is_same< BOOST_DEDUCED_TYPENAME Container::key_type, BOOST_DEDUCED_TYPENAME Container::value_type> {}; template struct is_map : public boost::mpl::not_ > {}; struct yes_type { char x[100]; }; struct no_type { char x[200]; }; template yes_type has_unique_key_impl( boost::unordered_set const*); template no_type has_unique_key_impl( boost::unordered_multiset const*); template yes_type has_unique_key_impl( boost::unordered_map const*); template no_type has_unique_key_impl( boost::unordered_multimap const*); template struct has_unique_keys { BOOST_STATIC_CONSTANT(bool, value = sizeof(has_unique_key_impl((Container const*)0)) == sizeof(yes_type)); }; template struct has_equivalent_keys { BOOST_STATIC_CONSTANT(bool, value = sizeof(has_unique_key_impl((Container const*)0)) == sizeof(no_type)); }; } #endif