-
Notifications
You must be signed in to change notification settings - Fork 2
/
week13-app2.cpp
98 lines (79 loc) · 2.15 KB
/
week13-app2.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
// tuple implementation
#include <iostream>
#include <variant>
using namespace std;
template<typename First, typename ... Rest>
struct Tuple {
First value;
Tuple<Rest...> rest;
template<size_t target_idx, size_t current_idx = 0>
auto get() const {
if constexpr(target_idx == current_idx) {
return value;
} else {
return rest.template get<target_idx, current_idx+1>();
}
}
template<typename target_type>
auto get() const {
if constexpr(std::is_same_v<target_type, First>) {
return value;
} else {
return rest.template get<target_type>();
}
}
};
template<typename T>
struct Tuple<T> {
T value;
template<size_t target_idx, size_t current_idx>
auto get() const {
static_assert(target_idx == current_idx, "Index Error");
return value;
}
template<typename target_type>
auto get() const {
static_assert(std::is_same_v<target_type, T>, "Type Error");
return value;
}
};
template<size_t target_idx, typename ... Ts>
auto get(const Tuple<Ts...>& t) {
return t.template get<target_idx>();
}
template<typename target_type, typename ... Ts>
auto get(const Tuple<Ts...>& t) {
return t.template get<target_type>();
}
int main()
{
auto t = Tuple<int, float, double>{2, 1.1f, 3.14};
// cout << t.get<3>() << endl;
cout << get<0>(t) << endl;
cout << get<double>(t) << endl;
// cout << t.get<double>() << endl;
return 0;
}
// struct X {
// int i; // assigned 2
// float f; // assigned 1.1f
// double d; // assigned 1, became 1.0
// template<size_t idx>
// auto get() const {
// if constexpr(idx == 0) {
// return i;
// } else if constexpr(idx == 1) {
// return f;
// } else if constexpr(idx == 2) {
// return d;
// }
// }
// // auto get(size_t index) const -> std::variant<int, float, double> {
// // switch(index) {
// // case 0: return i;
// // case 1: return f;
// // case 2: return d;
// // default: return 0;
// // }
// // }
// };