diff options
Diffstat (limited to 'nihil.util/match.ccm')
| -rw-r--r-- | nihil.util/match.ccm | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/nihil.util/match.ccm b/nihil.util/match.ccm deleted file mode 100644 index b72416a..0000000 --- a/nihil.util/match.ccm +++ /dev/null @@ -1,18 +0,0 @@ -// This source code is released into the public domain. -export module nihil.util:match; - -import nihil.std; - -namespace nihil { - -export template<class... Ts> -struct match : Ts... { using Ts::operator()...; }; - -export template<typename... Ts, typename... Fs> -[[nodiscard]] constexpr decltype(auto) operator| - (std::variant<Ts...> const &v, match<Fs...> const &match) -{ - return std::visit(match, v); -} - -} // namespace nihil |
