-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboost.cpp
49 lines (42 loc) · 1.26 KB
/
boost.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
//
// Created by nuxeslin on 2018/9/13.
//
#include <iostream>
using namespace std;
namespace kq {
template <typename TW>
struct wrapper {
template <typename T, typename Dummy = void>
struct fn {
constexpr static size_t value = 0;
};
// explicit specialization of `fn` in non-explicit
// specialized class scope `wrapper` is invalid
// we can use a trivial arg, to turn it into a partial specialization
template <typename Dummy>
struct fn<int> {
constexpr static size_t value = 1;
};
};
struct stat {
template <bool Cond>
class kcheck {
template <bool C, typename std::enable_if<C>::type* = nullptr>
static char try_(void*);
template <bool C, typename std::enable_if<!C>::type* = nullptr>
static int try_(void*);
public:
constexpr static bool res = sizeof(try_<Cond>(0)) == sizeof(char);
};
};
}
static void RunMono() {
// auto r = kq::wrapper<char>::template fn<int>::value;
std::cerr << "cond_res: " << kq::stat::template kcheck<false>::res << "\n";
}
int main() {
auto rref = std::move(6);
cerr << "res: " << rref << endl;
RunMono();
return 0;
}