-
Notifications
You must be signed in to change notification settings - Fork 217
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[symmetric_difference] Add tests and example for map
Closes #341
- Loading branch information
1 parent
71858c6
commit 311b052
Showing
4 changed files
with
112 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Copyright Louis Dionne 2013-2017 | ||
// Distributed under the Boost Software License, Version 1.0. | ||
// (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) | ||
|
||
#include <boost/hana/assert.hpp> | ||
#include <boost/hana/map.hpp> | ||
#include <boost/hana/symmetric_difference.hpp> | ||
|
||
namespace hana = boost::hana; | ||
|
||
|
||
constexpr auto m1 = hana::make_map( | ||
hana::make_pair(hana::type_c<int>, 1), | ||
hana::make_pair(hana::type_c<bool>, hana::true_c) | ||
); | ||
|
||
constexpr auto m2 = hana::make_map( | ||
hana::make_pair(hana::type_c<float>, 1.0), | ||
hana::make_pair(hana::type_c<long long>, 2LL), | ||
hana::make_pair(hana::type_c<int>, 3) | ||
); | ||
|
||
constexpr auto result_m = hana::make_map( | ||
hana::make_pair(hana::type_c<bool>, hana::true_c), | ||
hana::make_pair(hana::type_c<float>, 1.0), | ||
hana::make_pair(hana::type_c<long long>, 2LL) | ||
); | ||
|
||
int main() { | ||
BOOST_HANA_RUNTIME_CHECK( | ||
hana::symmetric_difference(m1, m2) == result_m | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
// Copyright Louis Dionne 2013-2017 | ||
// Distributed under the Boost Software License, Version 1.0. | ||
// (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) | ||
|
||
#include <boost/hana/map.hpp> | ||
#include <boost/hana/symmetric_difference.hpp> | ||
|
||
#include <laws/base.hpp> | ||
#include <support/minimal_product.hpp> | ||
namespace hana = boost::hana; | ||
using hana::test::ct_eq; | ||
|
||
|
||
template <int i> | ||
auto key() { return hana::test::ct_eq<i>{}; } | ||
|
||
template <int i> | ||
auto val() { return hana::test::ct_eq<-i>{}; } | ||
|
||
template <int i, int j> | ||
auto p() { return ::minimal_product(key<i>(), val<j>()); } | ||
|
||
int main() { | ||
BOOST_HANA_CONSTANT_CHECK(hana::equal( | ||
hana::symmetric_difference( | ||
hana::make_map(), | ||
hana::make_map() | ||
), | ||
hana::make_map() | ||
)); | ||
|
||
BOOST_HANA_CONSTANT_CHECK(hana::equal( | ||
hana::symmetric_difference( | ||
hana::make_map(p<1, 1>()), | ||
hana::make_map(p<1, 1>()) | ||
), | ||
hana::make_map() | ||
)); | ||
|
||
BOOST_HANA_CONSTANT_CHECK(hana::equal( | ||
hana::symmetric_difference( | ||
hana::make_map(p<1, 2>()), | ||
hana::make_map(p<2, 4>()) | ||
), | ||
hana::make_map(p<1, 2>(), | ||
p<2, 4>()) | ||
)); | ||
|
||
BOOST_HANA_CONSTANT_CHECK(hana::equal( | ||
hana::symmetric_difference( | ||
hana::make_map(p<1, 2>(), | ||
p<2, 22>()), | ||
hana::make_map(p<2, 4>(), | ||
p<3, 33>()) | ||
), | ||
hana::make_map(p<1, 2>(), | ||
p<3, 33>()) | ||
)); | ||
|
||
BOOST_HANA_CONSTANT_CHECK(hana::equal( | ||
hana::symmetric_difference( | ||
hana::make_map(p<1, 2>(), | ||
p<2, 22>(), | ||
p<3, 33>(), | ||
p<5, 55>(), | ||
p<8, 88>()), | ||
hana::make_map(p<2, 4>(), | ||
p<3, 33>(), | ||
p<4, 44>(), | ||
p<9, 99>()) | ||
), | ||
hana::make_map(p<1, 2>(), | ||
p<5, 55>(), | ||
p<8, 88>(), | ||
p<4, 44>(), | ||
p<9, 99>()) | ||
)); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters