forked from boostorg/unordered
https://svn.boost.org/svn/boost/trunk ........ r48081 | danieljames | 2008-08-11 08:52:37 +0100 (Mon, 11 Aug 2008) | 2 lines Rename 'emplace' with hint to 'emplace_hint'. ........ r48082 | danieljames | 2008-08-11 08:53:05 +0100 (Mon, 11 Aug 2008) | 2 lines More recent version of the working draft. ........ r48791 | danieljames | 2008-09-15 22:48:46 +0100 (Mon, 15 Sep 2008) | 1 line Fix a workaround macro. ........ r48802 | danieljames | 2008-09-16 22:45:53 +0100 (Tue, 16 Sep 2008) | 1 line Forward headers for the unordered containers. ........ r48803 | danieljames | 2008-09-16 22:49:41 +0100 (Tue, 16 Sep 2008) | 1 line Move the unordered headers into the unordered directory. ........ r48853 | danieljames | 2008-09-18 12:23:12 +0100 (Thu, 18 Sep 2008) | 1 line Update unordered changelog. ........ [SVN r48854]
63 lines
1.4 KiB
C++
63 lines
1.4 KiB
C++
|
|
// Copyright 2008 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)
|
|
|
|
#include <boost/unordered/unordered_map_fwd.hpp>
|
|
|
|
typedef boost::unordered_map<int, int> int_map;
|
|
|
|
void call_swap(int_map& x, int_map& y) {
|
|
swap(x,y);
|
|
}
|
|
|
|
bool call_equals(int_map& x, int_map& y) {
|
|
return x == y;
|
|
}
|
|
|
|
bool call_not_equals(int_map& x, int_map& y) {
|
|
return x != y;
|
|
}
|
|
|
|
typedef boost::unordered_multimap<int, int> int_multimap;
|
|
|
|
void call_swap(int_multimap& x, int_multimap& y) {
|
|
swap(x,y);
|
|
}
|
|
|
|
bool call_equals(int_multimap& x, int_multimap& y) {
|
|
return x == y;
|
|
}
|
|
|
|
bool call_not_equals(int_multimap& x, int_multimap& y) {
|
|
return x != y;
|
|
}
|
|
|
|
#include <boost/unordered_map.hpp>
|
|
#include "../helpers/test.hpp"
|
|
|
|
UNORDERED_AUTO_TEST(use_map_fwd_declared_function) {
|
|
int_map x, y;
|
|
x[1] = 2;
|
|
y[2] = 1;
|
|
call_swap(x, y);
|
|
|
|
BOOST_CHECK(y.find(1) != y.end() && y.find(1)->second == 2);
|
|
BOOST_CHECK(y.find(2) == y.end());
|
|
|
|
BOOST_CHECK(x.find(1) == x.end());
|
|
BOOST_CHECK(x.find(2) != x.end() && x.find(2)->second == 1);
|
|
|
|
BOOST_CHECK(!call_equals(x, y));
|
|
BOOST_CHECK(call_not_equals(x, y));
|
|
}
|
|
|
|
UNORDERED_AUTO_TEST(use_multimap_fwd_declared_function) {
|
|
int_multimap x, y;
|
|
call_swap(x, y);
|
|
BOOST_CHECK(call_equals(x, y));
|
|
BOOST_CHECK(!call_not_equals(x, y));
|
|
}
|
|
|
|
RUN_TESTS()
|