Skip to content

Commit

Permalink
[symmetric_difference] Add tests and example for map
Browse files Browse the repository at this point in the history
Closes #341
  • Loading branch information
shreyans800755 committed Jun 11, 2017
1 parent 71858c6 commit 311b052
Show file tree
Hide file tree
Showing 4 changed files with 112 additions and 5 deletions.
33 changes: 33 additions & 0 deletions example/map/symmetric_difference.cpp
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
);
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@
// (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)

#include <boost/hana/assert.hpp>
#include <boost/hana/equal.hpp>
#include <boost/hana/integral_constant.hpp>
#include <boost/hana/set.hpp>
#include <boost/hana/symmetric_difference.hpp>
#include <boost/hana/type.hpp>

namespace hana = boost::hana;


Expand Down
78 changes: 78 additions & 0 deletions test/map/symmetric_difference.cpp
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>())
));
}
2 changes: 0 additions & 2 deletions test/set/symmetric_difference.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
// 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/equal.hpp>
#include <boost/hana/set.hpp>
#include <boost/hana/symmetric_difference.hpp>

Expand Down

0 comments on commit 311b052

Please sign in to comment.