aboutsummaryrefslogtreecommitdiffstats
path: root/nihil.match/match.ccm
diff options
context:
space:
mode:
Diffstat (limited to 'nihil.match/match.ccm')
-rw-r--r--nihil.match/match.ccm18
1 files changed, 0 insertions, 18 deletions
diff --git a/nihil.match/match.ccm b/nihil.match/match.ccm
deleted file mode 100644
index 03730bb..0000000
--- a/nihil.match/match.ccm
+++ /dev/null
@@ -1,18 +0,0 @@
-// This source code is released into the public domain.
-export module nihil.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