Skip to content

Instantly share code, notes, and snippets.

View petar-andrejic's full-sized avatar
🐊
Working hard AND hardly working!

Petar petar-andrejic

🐊
Working hard AND hardly working!
  • Wellington, New Zealand
View GitHub Profile
@petar-andrejic
petar-andrejic / match.cpp
Last active October 8, 2024 00:42
Match statements in C++20
#include <print>
#include <variant>
template<class... Ts>
struct Pattern : Ts... {
using Ts::operator()...;
};
template<class Variant>
struct Match {