| 47 | constexpr explicit MatchHelper(V &&value) : mValue{std::forward<V>(value)} {} |
| 48 | template <typename... PatternPair> |
| 49 | constexpr auto operator()(PatternPair const &...patterns) |
| 50 | { |
| 51 | return matchPatterns(std::forward<ValueRefT>(mValue), patterns...); |
| 52 | } |
| 53 | }; |
| 54 | |
| 55 | template <typename Value> |
nothing calls this directly
no test coverage detected