Feb 23
•
Articles
• 1 min read
One of the very few features of the C++ standard library that I unapologetically like, is the std::visit. It reduces the amount of boilerplate code, kills multiple birds with a single stone, and doesn’t sacrifice performance while doing it. So let’s ...