-
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.
Add set-theoretic operations to hana::map
Closes #350 Big thanks to @shreyans800755 for his great work!
- Loading branch information
Showing
16 changed files
with
661 additions
and
90 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,46 @@ | ||
// 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/difference.hpp> | ||
#include <boost/hana/equal.hpp> | ||
#include <boost/hana/map.hpp> | ||
#include <boost/hana/string.hpp> | ||
|
||
#include <string> | ||
namespace hana = boost::hana; | ||
using namespace hana::literals; | ||
|
||
|
||
constexpr auto m1 = hana::make_map( | ||
hana::make_pair("key1"_s, hana::type_c<std::string>), | ||
hana::make_pair("key2"_s, hana::type_c<std::string>) | ||
); | ||
|
||
constexpr auto m2 = hana::make_map( | ||
hana::make_pair("key3"_s, hana::type_c<std::string>), | ||
hana::make_pair("key4"_s, hana::type_c<std::string>), | ||
hana::make_pair("key5"_s, hana::type_c<std::string>) | ||
); | ||
|
||
constexpr auto m3 = hana::make_map( | ||
hana::make_pair("key1"_s, hana::type_c<std::string>), | ||
hana::make_pair("key4"_s, hana::type_c<int>), | ||
hana::make_pair("key2"_s, hana::type_c<long long>) | ||
); | ||
|
||
int main() { | ||
BOOST_HANA_CONSTANT_CHECK(hana::difference(m1, m2) == m1); | ||
|
||
BOOST_HANA_CONSTANT_CHECK(hana::difference(m1, m3) == hana::make_map()); | ||
|
||
BOOST_HANA_CONSTANT_CHECK(hana::difference(m3, m1) == hana::make_map( | ||
hana::make_pair("key4"_s, hana::type_c<int>) | ||
)); | ||
|
||
BOOST_HANA_CONSTANT_CHECK(hana::difference(m2, m3) == hana::make_map( | ||
hana::make_pair("key3"_s, hana::type_c<std::string>), | ||
hana::make_pair("key5"_s, hana::type_c<std::string>) | ||
)); | ||
} |
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,47 @@ | ||
// 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/equal.hpp> | ||
#include <boost/hana/intersection.hpp> | ||
#include <boost/hana/map.hpp> | ||
#include <boost/hana/string.hpp> | ||
|
||
#include <string> | ||
namespace hana = boost::hana; | ||
using namespace hana::literals; | ||
|
||
|
||
constexpr auto m1 = hana::make_map( | ||
hana::make_pair("key1"_s, hana::type_c<std::string>), | ||
hana::make_pair("key2"_s, hana::type_c<std::string>) | ||
); | ||
|
||
constexpr auto m2 = hana::make_map( | ||
hana::make_pair("key3"_s, hana::type_c<std::string>), | ||
hana::make_pair("key4"_s, hana::type_c<std::string>), | ||
hana::make_pair("key5"_s, hana::type_c<std::string>) | ||
); | ||
|
||
BOOST_HANA_CONSTANT_CHECK(hana::intersection(m1, m2) == hana::make_map()); | ||
|
||
constexpr auto m3 = hana::make_map( | ||
hana::make_pair(hana::type_c<int>, hana::int_c<1>), | ||
hana::make_pair(hana::type_c<bool>, hana::bool_c<true>), | ||
hana::make_pair(hana::type_c<std::string>, "hana"_s), | ||
hana::make_pair(hana::type_c<float>, hana::int_c<100>) | ||
); | ||
|
||
constexpr auto m4 = hana::make_map( | ||
hana::make_pair(hana::type_c<char>, hana::char_c<'c'>), | ||
hana::make_pair(hana::type_c<bool>, hana::bool_c<false>), | ||
hana::make_pair(hana::type_c<std::string>, "boost"_s) | ||
); | ||
|
||
BOOST_HANA_CONSTANT_CHECK(hana::intersection(m3, m4) == hana::make_map( | ||
hana::make_pair(hana::type_c<bool>, hana::bool_c<true>), | ||
hana::make_pair(hana::type_c<std::string>, "hana"_s) | ||
)); | ||
|
||
int main() { } |
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 | ||
); | ||
} |
File renamed without changes.
File renamed without changes.
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
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
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
Oops, something went wrong.