-
Notifications
You must be signed in to change notification settings - Fork 15
Add appendix discussing recursive variants #611
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
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
0f39bff
Add Appendix listing code from National Body comment author
jbcoe ee77e99
Fix formatting of sample code
jbcoe 5a1de16
Add example and discussion of recursive variants
jbcoe c17e899
Fix code organisation
jbcoe f46d372
Code cleanup
jbcoe ddea980
Add changelog
jbcoe a88addc
Fix typo
jbcoe 009a4ea
Update date
jbcoe 686ad4a
Reorganise code
jbcoe 809967b
Add missing header guards
jbcoe bae0c36
Add CMake configuration for recursive_variant_test
Copilot 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 @@ | ||
| #include "recursive_variant.h" |
This file contains hidden or 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,34 @@ | ||
| // An investigation of recursive variants and an associated helper type. | ||
jbcoe marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| #ifndef XYZ_EXPLORATION_RECURSIVE_VARIANT_H_ | ||
| #define XYZ_EXPLORATION_RECURSIVE_VARIANT_H_ | ||
|
|
||
| #include <string> | ||
| #include <variant> | ||
|
|
||
| #include "indirect.h" | ||
|
|
||
| namespace xyz::testing { | ||
|
|
||
| template <typename T> | ||
| struct deref { | ||
| T t_; | ||
|
|
||
| using U = decltype(*std::declval<T>()); | ||
|
|
||
| operator U&() { return *t_; } | ||
|
|
||
| operator const U&() const { return *t_; } | ||
| }; | ||
|
|
||
| struct ASTNode; | ||
| using ASTNodeRecursiveStorage = deref<xyz::indirect<ASTNode>>; | ||
| using ASTNodeData = std::variant<int, std::string, ASTNodeRecursiveStorage>; | ||
|
|
||
| struct ASTNode { | ||
| ASTNodeData data_; | ||
| }; | ||
|
|
||
| } // namespace xyz::testing | ||
|
|
||
| #endif // XYZ_EXPLORATION_RECURSIVE_VARIANT_H_ | ||
This file contains hidden or 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,55 @@ | ||
| #include "recursive_variant.h" | ||
|
|
||
| #include <gtest/gtest.h> | ||
|
|
||
| namespace { | ||
|
|
||
| using xyz::testing::ASTNode; | ||
| using xyz::testing::ASTNodeRecursiveStorage; | ||
| using xyz::testing::deref; | ||
|
|
||
| template <class... Ts> | ||
| struct overload : Ts... { | ||
| using Ts::operator()...; | ||
|
|
||
| overload(Ts&&... ts) : Ts(std::forward<Ts>(ts))... {} | ||
| }; | ||
|
|
||
| TEST(RecursiveVariant, ExplicitAccess) { | ||
| ASTNode node; | ||
|
|
||
| // This is a pain to write and exposes implementation details. | ||
| int result = | ||
| std::visit(overload([](const int&) { return 0; }, // | ||
| [](const std::string&) { return 1; }, // | ||
| [](const ASTNodeRecursiveStorage&) { return 2; }), | ||
| node.data_); | ||
|
|
||
| EXPECT_EQ(result, 0); | ||
| } | ||
|
|
||
| TEST(RecursiveVariant, DerefAccess) { | ||
| ASTNode node; | ||
|
|
||
| // This is nicer to write. | ||
| int result = std::visit(overload([](const int&) { return 0; }, // | ||
| [](const std::string&) { return 1; }, // | ||
| [](const ASTNode&) { return 2; }), | ||
| node.data_); | ||
|
|
||
| EXPECT_EQ(result, 0); | ||
| } | ||
|
|
||
| TEST(RecursiveVariant, LazyAccess) { | ||
| ASTNode node; | ||
|
|
||
| // This is lazy. | ||
| int result = std::visit(overload([](const int&) { return 0; }, // | ||
| [](const std::string&) { return 1; }, // | ||
| [](const auto&) { return 2; }), | ||
| node.data_); | ||
|
|
||
| EXPECT_EQ(result, 0); | ||
| } | ||
|
|
||
| } // namespace |
This file contains hidden or 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.
Uh oh!
There was an error while loading. Please reload this page.