-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathvariadic.cpp
82 lines (67 loc) · 1.96 KB
/
variadic.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
// MPark.Patterns
//
// Copyright Michael Park, 2017
//
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
#include <mpark/patterns.hpp>
#include <string>
#include <tuple>
#include <utility>
#include <variant>
#include <gtest/gtest.h>
namespace utility {
template <typename F, typename Tuple>
decltype(auto) apply(F &&f, Tuple &&t) {
using namespace mpark::patterns;
return match(std::forward<Tuple>(t))(
pattern(ds(variadic(arg))) = std::forward<F>(f));
}
} // namespace utility
TEST(Variadic, Apply) {
std::tuple<int, std::string> x = {42, "hello"};
utility::apply(
[](const auto &lhs, const auto &rhs) {
EXPECT_EQ(42, lhs);
EXPECT_EQ("hello", rhs);
},
x);
}
namespace utility {
template <typename F, typename... Vs>
decltype(auto) visit(F &&f, Vs &&... vs) {
using namespace mpark::patterns;
return match(std::forward<Vs>(vs)...)(
pattern(variadic(vis(arg))) = std::forward<F>(f));
}
} // namespace utility
struct Visitor {
void operator()(int lhs, const std::string &rhs) const {
EXPECT_EQ(42, lhs);
EXPECT_EQ("hello", rhs);
}
template <typename T, typename U>
void operator()(const T &, const U &) const {
EXPECT_TRUE(false);
}
};
TEST(Variadic, Visit) {
std::variant<int, std::string> x = 42, y = "hello";
utility::visit(Visitor{}, x, y);
}
TEST(Variadic, Middle) {
std::tuple<int, int, int, int> tuple = {42, 101, 101, 42};
using namespace mpark::patterns;
IDENTIFIERS(x, y);
int result = match(tuple)(
pattern(ds(variadic(x))) = [](auto) { return 1; },
pattern(ds(x, variadic(arg), x)) = [](auto, auto... args) {
static_assert(sizeof...(args) == 2);
return 2;
},
pattern(ds(x, y, y, variadic(arg), x)) = [](auto, auto, auto... args) {
static_assert(sizeof...(args) == 0);
return 3;
});
EXPECT_EQ(2, result);
}