This repository was archived by the owner on Sep 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathprelude.hpp
85 lines (62 loc) · 2.4 KB
/
prelude.hpp
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
#ifndef PRESENTATION_PRELUDE_HPP
#define PRESENTATION_PRELUDE_HPP
#include <type_traits>
#include <utility>
using std::is_copy_constructible;
using std::is_copy_assignable;
using std::is_destructible;
using std::is_convertible;
using std::is_pointer;
using std::is_same;
using std::integral_constant;
using std::false_type;
using std::true_type;
using std::declval;
using std::add_pointer_t;
using std::enable_if_t;
template <bool B> using bool_constant = integral_constant<bool, B>;
template <class...> using void_t = void;
template <class T> struct identity { using type = T; };
template <class T, class Void, template <class...> class, class...>
struct detector : identity<T> { using value_t = false_type; };
template <class T, template <class...> class U, class... Args>
struct detector<T, void_t<U<Args...>>, U, Args...> :
identity<U<Args...>>
{ using value_t = true_type; };
struct nonesuch final {
nonesuch (nonesuch const&) = delete;
nonesuch () = delete;
~nonesuch () = delete;
void operator = (nonesuch const&) = delete;
};
template <class T, template <class...> class U, class... Args>
using detected_or = detector<T, void, U, Args...>;
template <template <class...> class T, class... Args>
using detected_t = typename detected_or<nonesuch, T, Args...>::type;
template <class T, template <class...> class U, class... Args>
using detected_or_t = typename detected_or<T, U, Args...>::type;
template <class To, template <class...> class T, class... Args>
using is_detected_convertible = is_convertible<
detected_t<T, Args...>,
To
>;
template <class T, template <class...> class U, class... Args>
using is_detected_exact = is_same<T, detected_t<U, Args...>>;
template <template <class...> class T, class... Args>
using is_detected = typename detected_or<nonesuch, T, Args...>::value_t;
template <class...> struct conjunction;
template <class...> struct disjunction;
template <class B> using negation = bool_constant<not B::value>;
template <class T, class... Ts>
struct conjunction<T, Ts...> :
bool_constant<T::value and conjunction<Ts...>::value>
{ };
template <> struct conjunction<> : true_type { };
template <class T, class... Ts>
struct disjunction<T, Ts...> :
bool_constant<T::value or disjunction<Ts...>::value>
{ };
template <> struct disjunction<> : false_type { };
template <class From, class To>
using explicit_cast = decltype(static_cast<To>(declval<From>()));
#endif /* PRESENTATION_PRELUDE_HPP */