Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

77%
+5 −0
Q&A How should one match a specialized version of a variant?

Let's say I have a variant that can hold a bunch of different types of values (say I got them from parsing a JSON or similar). using Value = std::variant<std::monostate, int, double, std::strin...

1 answer  ·  posted 2y ago by Moshi‭  ·  last activity 11mo ago by Baum mit Augen‭

Question c++ variant
#3: Post edited by user avatar Moshi‭ · 2022-05-04T21:15:52Z (almost 2 years ago)
I misunderstood the cppreference page
  • Let's say I have a variant that can hold a bunch of different types of values (say I got them from parsing a JSON or similar).
  • ```cpp
  • using Value = std::variant<std::monostate, int, double, std::string>;
  • ```
  • Let's also say that I have another variant that is a strict subset of the first.
  • ```cpp
  • using Numeric = std::variant<int, double>;
  • ```
  • Given a `Value`, what is the best way for me to specialize for `Numeric`? I've tried `std::visit`, which does work if I do concrete overloads...
  • ```cpp
  • template <class... Ts> struct overloaded : Ts... { using Ts::operator()...; };
  • void test(Value something) {
  • std::visit(overloaded{
  • [](Numeric) { std::cout << "Number" << std::endl; },
  • [](std::string) { std::cout << "Other" << std::endl; },
  • [](std::monostate) { std::cout << "Other" << std::endl; },
  • },
  • something);
  • }
  • ```
  • ```cpp
  • int main(int argc, char const *argv[]) {
  • Value nothing{};
  • Value some_int{10};
  • Value some_float{10.0};
  • Value some_string{"hello"};
  • test(nothing); // Other
  • test(some_int); // Number
  • test(some_float); // Number
  • test(some_string); // Other
  • return 0
  • }
  • ```
  • ... but as you can see, I end up duplicating the other lambdas. However, it breaks if I use an `auto`'d default:
  • ```cpp
  • void test(Value something) {
  • std::visit(overloaded{
  • [](Numeric) { std::cout << "Number" << std::endl; },
  • [](auto) { std::cout << "Other" << std::endl; },
  • },
  • something);
  • }
  • ```
  • ```cpp
  • // Elided
  • test(nothing); // Other
  • test(some_int); // Other
  • test(some_float); // Other
  • test(some_string); // Other
  • ```
  • I've also tried using `std::get_if` but that just throws a bunch of errors at me (It seems that it can't tell that the `auto`'d lambda should exclude the values in `Numeric`, which is somewhat odd since reading [the cppreference](https://en.cppreference.com/w/cpp/utility/variant/visit) page gave me the impression that implicit conversion would allow it to infer that... anyway)
  • ```cpp
  • void test(Value something) {
  • if (auto numeric = std::get_if<Numeric>(&something)) {
  • std::cout << "Number";
  • } else {
  • std::cout << "Other";
  • }
  • }
  • ```
  • ```
  • /usr/include/c++/11/variant:1176:42: error: static assertion failed: T must occur exactly once in alternatives
  • 1176 | static_assert(__detail::__variant::__exactly_once<_Tp, _Types...>,
  • | ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  • /usr/include/c++/11/variant:1176:42: note: ‘std::__detail::__variant::__exactly_once<std::variant<int, double>, std::monostate, int, double, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >’ evaluates to false
  • ```
  • Is my only option explicitly listing out either the types I want to match on, or the types I don't want to match on? That would involve a lot of duplication, not to mention I would need to keep it synchronized with the variant.
  • Let's say I have a variant that can hold a bunch of different types of values (say I got them from parsing a JSON or similar).
  • ```cpp
  • using Value = std::variant<std::monostate, int, double, std::string>;
  • ```
  • Let's also say that I have another variant that is a strict subset of the first.
  • ```cpp
  • using Numeric = std::variant<int, double>;
  • ```
  • Given a `Value`, what is the best way for me to specialize for `Numeric`? I've tried `std::visit`, which does work if I do concrete overloads...
  • ```cpp
  • template <class... Ts> struct overloaded : Ts... { using Ts::operator()...; };
  • void test(Value something) {
  • std::visit(overloaded{
  • [](Numeric) { std::cout << "Number" << std::endl; },
  • [](std::string) { std::cout << "Other" << std::endl; },
  • [](std::monostate) { std::cout << "Other" << std::endl; },
  • },
  • something);
  • }
  • ```
  • ```cpp
  • int main(int argc, char const *argv[]) {
  • Value nothing{};
  • Value some_int{10};
  • Value some_float{10.0};
  • Value some_string{"hello"};
  • test(nothing); // Other
  • test(some_int); // Number
  • test(some_float); // Number
  • test(some_string); // Other
  • return 0;
  • }
  • ```
  • ... but as you can see, I end up duplicating the other lambdas. However, it breaks if I use an `auto`'d default:
  • ```cpp
  • void test(Value something) {
  • std::visit(overloaded{
  • [](Numeric) { std::cout << "Number" << std::endl; },
  • [](auto) { std::cout << "Other" << std::endl; },
  • },
  • something);
  • }
  • ```
  • ```cpp
  • // Elided
  • test(nothing); // Other
  • test(some_int); // Other
  • test(some_float); // Other
  • test(some_string); // Other
  • ```
  • I've also tried using `std::get_if` but that just throws a bunch of errors at me (It seems that it can't tell that the `auto`'d lambda should exclude the values in `Numeric`)
  • ```cpp
  • void test(Value something) {
  • if (auto numeric = std::get_if<Numeric>(&something)) {
  • std::cout << "Number";
  • } else {
  • std::cout << "Other";
  • }
  • }
  • ```
  • ```
  • /usr/include/c++/11/variant:1176:42: error: static assertion failed: T must occur exactly once in alternatives
  • 1176 | static_assert(__detail::__variant::__exactly_once<_Tp, _Types...>,
  • | ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  • /usr/include/c++/11/variant:1176:42: note: ‘std::__detail::__variant::__exactly_once<std::variant<int, double>, std::monostate, int, double, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >’ evaluates to false
  • ```
  • Is my only option explicitly listing out either the types I want to match on, or the types I don't want to match on? That would involve a lot of duplication, not to mention I would need to keep it synchronized with the variant.
#2: Post edited by user avatar Moshi‭ · 2022-05-03T22:07:01Z (almost 2 years ago)
fixed some small copy-paste errors
  • Let's say I have a variant that can hold a bunch of different types of values (say I got them from parsing a JSON or similar).
  • ```cpp
  • using Value = std::variant<std::monostate, int, double, std::string>;
  • ```
  • Let's also say that I have another variant that is a strict subset of the first.
  • ```cpp
  • using Numeric = std::variant<int, double>;
  • ```
  • Given a `Value`, what is the best way for me to specialize for `Numeric`? I've tried `std::visit`, which does work if I do concrete overloads...
  • ```cpp
  • template <class... Ts> struct overloaded : Ts... { using Ts::operator()...; };
  • void test(Value something) {
  • std::visit(overloaded{
  • [](Numeric) { std::cout << "Number" << std::endl; },
  • [](std::string) { std::cout << "Other" << std::endl; },
  • [](std::monostate) { std::cout << "Other" << std::endl; },
  • },
  • something);
  • }
  • ```
  • ```cpp
  • int main(int argc, char const *argv[]) {
  • Value nothing{};
  • Value some_int{10};
  • Value some_float{10.0};
  • Value some_string{"hello"};
  • test(nothing); // Other
  • test(some_int); // Number
  • test(some_float); // Number
  • test(some_string); // Other
  • return 0
  • ```
  • ... but as you can see, I end up duplicating the other lambdas. However, it breaks if I use an `auto`'d default:
  • ```cpp
  • void test(Value something) {
  • std::visit(overloaded{
  • [](Numeric) { std::cout << "Number" << std::endl; },
  • [](auto) { std::cout << "Other" << std::endl; },
  • },
  • something);
  • }
  • ```
  • ```cpp
  • // Elided
  • test(nothing);
  • test(nothing); // Other
  • test(some_int); // Other
  • test(some_float); // Other
  • test(some_string); // Other
  • ```
  • I've also tried using `std::get_if` but that just throws a bunch of errors at me (It seems that it can't tell that the `auto`'d lambda should exclude the values in `Numeric`, which is somewhat odd since reading [the cppreference](https://en.cppreference.com/w/cpp/utility/variant/visit) page gave me the impression that implicit conversion would allow it to infer that... anyway)
  • ```cpp
  • void test(Value something) {
  • if (auto numeric = std::get_if<Numeric>(&something)) {
  • std::cout << "Number";
  • } else {
  • std::cout << "Other";
  • }
  • }
  • ```
  • ```
  • /usr/include/c++/11/variant:1176:42: error: static assertion failed: T must occur exactly once in alternatives
  • 1176 | static_assert(__detail::__variant::__exactly_once<_Tp, _Types...>,
  • | ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  • /usr/include/c++/11/variant:1176:42: note: ‘std::__detail::__variant::__exactly_once<std::variant<int, double>, std::monostate, int, double, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >’ evaluates to false
  • ```
  • Is my only option explicitly listing out either the types I want to match on, or the types I don't want to match on? That would involve a lot of duplication, not to mention I would need to keep it synchronized with the variant.
  • Let's say I have a variant that can hold a bunch of different types of values (say I got them from parsing a JSON or similar).
  • ```cpp
  • using Value = std::variant<std::monostate, int, double, std::string>;
  • ```
  • Let's also say that I have another variant that is a strict subset of the first.
  • ```cpp
  • using Numeric = std::variant<int, double>;
  • ```
  • Given a `Value`, what is the best way for me to specialize for `Numeric`? I've tried `std::visit`, which does work if I do concrete overloads...
  • ```cpp
  • template <class... Ts> struct overloaded : Ts... { using Ts::operator()...; };
  • void test(Value something) {
  • std::visit(overloaded{
  • [](Numeric) { std::cout << "Number" << std::endl; },
  • [](std::string) { std::cout << "Other" << std::endl; },
  • [](std::monostate) { std::cout << "Other" << std::endl; },
  • },
  • something);
  • }
  • ```
  • ```cpp
  • int main(int argc, char const *argv[]) {
  • Value nothing{};
  • Value some_int{10};
  • Value some_float{10.0};
  • Value some_string{"hello"};
  • test(nothing); // Other
  • test(some_int); // Number
  • test(some_float); // Number
  • test(some_string); // Other
  • return 0
  • }
  • ```
  • ... but as you can see, I end up duplicating the other lambdas. However, it breaks if I use an `auto`'d default:
  • ```cpp
  • void test(Value something) {
  • std::visit(overloaded{
  • [](Numeric) { std::cout << "Number" << std::endl; },
  • [](auto) { std::cout << "Other" << std::endl; },
  • },
  • something);
  • }
  • ```
  • ```cpp
  • // Elided
  • test(nothing); // Other
  • test(some_int); // Other
  • test(some_float); // Other
  • test(some_string); // Other
  • ```
  • I've also tried using `std::get_if` but that just throws a bunch of errors at me (It seems that it can't tell that the `auto`'d lambda should exclude the values in `Numeric`, which is somewhat odd since reading [the cppreference](https://en.cppreference.com/w/cpp/utility/variant/visit) page gave me the impression that implicit conversion would allow it to infer that... anyway)
  • ```cpp
  • void test(Value something) {
  • if (auto numeric = std::get_if<Numeric>(&something)) {
  • std::cout << "Number";
  • } else {
  • std::cout << "Other";
  • }
  • }
  • ```
  • ```
  • /usr/include/c++/11/variant:1176:42: error: static assertion failed: T must occur exactly once in alternatives
  • 1176 | static_assert(__detail::__variant::__exactly_once<_Tp, _Types...>,
  • | ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  • /usr/include/c++/11/variant:1176:42: note: ‘std::__detail::__variant::__exactly_once<std::variant<int, double>, std::monostate, int, double, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >’ evaluates to false
  • ```
  • Is my only option explicitly listing out either the types I want to match on, or the types I don't want to match on? That would involve a lot of duplication, not to mention I would need to keep it synchronized with the variant.
#1: Initial revision by user avatar Moshi‭ · 2022-05-03T22:05:30Z (almost 2 years ago)
How should one match a specialized version of a variant?
Let's say I have a variant that can hold a bunch of different types of values (say I got them from parsing a JSON or similar).

```cpp
using Value = std::variant<std::monostate, int, double, std::string>;
```

Let's also say that I have another variant that is a strict subset of the first.

```cpp
using Numeric = std::variant<int, double>;
```

Given a `Value`, what is the best way for me to specialize for `Numeric`? I've tried `std::visit`, which does work if I do concrete overloads...

```cpp
template <class... Ts> struct overloaded : Ts... { using Ts::operator()...; };

void test(Value something) {
    std::visit(overloaded{
                   [](Numeric) { std::cout << "Number" << std::endl; },
                   [](std::string) { std::cout << "Other" << std::endl; },
                   [](std::monostate) { std::cout << "Other" << std::endl; },
               },
               something);
}
```
```cpp
int main(int argc, char const *argv[]) {
    Value nothing{};
    Value some_int{10};
    Value some_float{10.0};
    Value some_string{"hello"};

    test(nothing);     // Other
    test(some_int);    // Number
    test(some_float);  // Number
    test(some_string); // Other

    return 0
```

... but as you can see, I end up duplicating the other lambdas. However, it breaks if I use an `auto`'d default:

```cpp
void test(Value something) {
    std::visit(overloaded{
                   [](Numeric) { std::cout << "Number" << std::endl; },
                   [](auto) { std::cout << "Other" << std::endl; },
               },
               something);
}
```
```cpp
// Elided
    test(nothing);
test(nothing);     // Other
test(some_int);    // Other
test(some_float);  // Other
test(some_string); // Other
```

I've also tried using `std::get_if` but that just throws a bunch of errors at me (It seems that it can't tell that the `auto`'d lambda should exclude the values in `Numeric`, which is somewhat odd since reading [the cppreference](https://en.cppreference.com/w/cpp/utility/variant/visit) page gave me the impression that implicit conversion would allow it to infer that... anyway)

```cpp
void test(Value something) {
    if (auto numeric = std::get_if<Numeric>(&something)) {
        std::cout << "Number";
    } else {
        std::cout << "Other";
    }
}
```
```
/usr/include/c++/11/variant:1176:42: error: static assertion failed: T must occur exactly once in alternatives
 1176 |       static_assert(__detail::__variant::__exactly_once<_Tp, _Types...>,
      |                     ~~~~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/usr/include/c++/11/variant:1176:42: note: ‘std::__detail::__variant::__exactly_once<std::variant<int, double>, std::monostate, int, double, std::__cxx11::basic_string<char, std::char_traits<char>, std::allocator<char> > >’ evaluates to false
```

Is my only option explicitly listing out either the types I want to match on, or the types I don't want to match on? That would involve a lot of duplication, not to mention I would need to keep it synchronized with the variant.