| ▲ | tcfhgj an hour ago | |||||||
are you sure? https://stackoverflow.com/questions/69444641/c17-stdvariant-... | ||||||||
| ▲ | jasode 19 minutes ago | parent | next [-] | |||||||
To add to sibling comment... GCC 11 (2021) std::visit was slower than virtual dispatch. GCC 12 (2022) optimized std::visit so it can be faster than virtual dispatch. https://shubhankar-gambhir.github.io/posts/your-stdlib-imple... | ||||||||
| ▲ | creata 42 minutes ago | parent | prev [-] | |||||||
If you take the linked benchmark and use the latest compiler version, the std::variant version is faster. The annoying thing about std::variant (and with some other features of modern C++) is that it generates a bunch of code that the compiler has to optimize away. | ||||||||
| ||||||||