qxLib
qualifiers.h
Go to the documentation of this file.
1 /**
2 
3  @file qualifiers.h
4  @author Khrapov
5  @date 20.08.2023
6  @copyright © Nick Khrapov, 2023. All right reserved.
7 
8 **/
9 #pragma once
10 
11 namespace qx
12 {
13 
14 // clang-format off
15 
16 /**
17  @struct copy_qualifiers
18  @details Convert target_t to the type with test_t qualifiers
19  @tparam test_t - type to test, may be "const", "volatile"
20  @tparam target_t - type to apply qualifiers to
21 **/
22 template <class test_t, class target_t> struct copy_qualifiers;
23 
24 template <class test_t, class target_t> struct copy_qualifiers { using type = target_t; };
25 template <class test_t, class target_t> struct copy_qualifiers<const test_t, target_t> { using type = const target_t; };
26 template <class test_t, class target_t> struct copy_qualifiers< volatile test_t, target_t> { using type = volatile target_t; };
27 template <class test_t, class target_t> struct copy_qualifiers<const volatile test_t, target_t> { using type = const volatile target_t; };
28 // clang-format on
29 
30 template<class test_t, class target_t>
31 using copy_qualifiers_t = typename copy_qualifiers<test_t, target_t>::type;
32 
33 
34 
35 // clang-format off
36 
37 
38 /**
39  @struct switch_qualifiers
40  @details Switch (add or remove) const and volatile
41  @tparam T - type to switch
42 **/
43 template <class T> struct switch_qualifiers;
44 
45 template <class T> struct switch_qualifiers { using type = const volatile T; };
46 template <class T> struct switch_qualifiers<const T> { using type = volatile T; };
47 template <class T> struct switch_qualifiers< volatile T> { using type = const T; };
48 template <class T> struct switch_qualifiers<const volatile T> { using type = T; };
49 // clang-format on
50 
51 template<class T>
52 using switch_qualifiers_t = typename switch_qualifiers<T>::type;
53 
54 
55 
56 // clang-format off
57 
58 /**
59  @struct switch_const
60  @details Switch (add or remove) const
61  @tparam T - type to switch
62 **/
63 template<class T> struct switch_const;
64 
65 template <class T> struct switch_const { using type = const T; };
66 template <class T> struct switch_const<const T> { using type = T; };
67 // clang-format on
68 
69 template<class T>
70 using switch_const_t = typename switch_const<T>::type;
71 
72 
73 
74 // clang-format off
75 
76 /**
77  @struct switch_volatile
78  @details Switch (add or remove) volatile
79  @tparam T - type to switch
80 **/
81 template<class T> struct switch_volatile;
82 
83 template <class T> struct switch_volatile { using type = volatile T; };
84 template <class T> struct switch_volatile<volatile T> { using type = T; };
85 // clang-format on
86 
87 template<class T>
88 using switch_volatile_t = typename switch_volatile<T>::type;
89 
90 } // namespace qx