-
Notifications
You must be signed in to change notification settings - Fork 217
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/map functions #350
Merged
ldionne
merged 6 commits into
boostorg:develop
from
shreyans800755:feature/map_functions
Jun 24, 2017
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
074a5fa
[map] Add intersection method for map
shreyans800755 dbf83ac
[intersection] Document separately for map and set
shreyans800755 d70b015
[map] Add difference method for map
shreyans800755 1e6011d
[difference] Document separately for map and set
shreyans800755 220017b
[symmetric_difference] Add tests and example for map
shreyans800755 a88133a
[symmetric_difference] Document separately for map and set
shreyans800755 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. x2 |
||
#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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please order includes.