-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathds.cpp
75 lines (58 loc) · 1.85 KB
/
ds.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
// 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 <cstddef>
#include <string>
#include <type_traits>
#include <utility>
#include <vector>
#include <gtest/gtest.h>
namespace N {
struct S {
S(int x_, std::string y_) : x(x_), y(std::move(y_)) {}
int x;
std::string y;
};
template <std::size_t I>
auto &&get(const S &s) {
if constexpr (I == 0) return s.x;
else if constexpr (I == 1) return s.y;
}
} // namespace N
namespace std {
template <> class tuple_size<N::S> : public integral_constant<size_t, 2> {};
template <> class tuple_element<0, N::S> { public: using type = int; };
template <> class tuple_element<1, N::S> { public: using type = string; };
} // namespace std
TEST(Destructure, Pair) {
std::vector<std::pair<int, int>> points = {{0, 0}, {1, 0}, {1, 1}, {2, 0}};
int origin = 0;
int y_zero = 0;
int otherwise = 0;
for (const auto &point : points) {
using namespace mpark::patterns;
match(point)(pattern(ds(0, 0)) = [&origin] { ++origin; },
pattern(ds(_, 0)) = [&y_zero] { ++y_zero; },
pattern(ds(_, _)) = [&otherwise] { ++otherwise; });
}
EXPECT_EQ(1, origin);
EXPECT_EQ(2, y_zero);
EXPECT_EQ(1, otherwise);
}
TEST(Destructure, Custom) {
N::S s(101, "world");
using namespace mpark::patterns;
int result = match(s)(
pattern(ds(0, "")) = [] { return 0; },
pattern(arg(ds(101, arg))) = [](const auto &x, const auto &y) {
static_assert(std::is_same<N::S, std::decay_t<decltype(x)>>::value, "");
static_assert(
std::is_same<std::string, std::decay_t<decltype(y)>>::value, "");
return 1;
});
EXPECT_EQ(1, result);
}