qxLib
constexpr_flag.h
Go to the documentation of this file.
1 /**
2 
3  @file constexpr_flag.h
4  @author Khrapov
5  @date 16.09.2020
6  @copyright © Nick Khrapov, 2021. All right reserved.
7 
8 **/
9 #pragma once
10 
11 namespace qx
12 {
13 
14 /**
15 
16  @class constexpr_flag
17  @brief Constexpr flag class
18  @details Returns "Start" at the beginning(test), "Start" with test_and_set and "End" after
19  @tparam tag_t - tag for unique instances
20  @tparam T - value type
21  @tparam Start - start value
22  @tparam End - end value
23  @author Khrapov
24  @date 14.09.2020
25 
26 **/
27 template<class tag_t, class T = bool, T Start = false, T End = true>
29 {
30 private:
31  struct dummy
32  {
33  friend constexpr void adl_flag(dummy) noexcept;
34  };
35 
36  template<T>
37  struct writer
38  {
39  friend constexpr void adl_flag(dummy) noexcept
40  {
41  }
42  };
43 
44  template<class dummy_t, int = (adl_flag(dummy_t {}), 0)>
45  static constexpr T check(int) noexcept
46  {
47  return End;
48  }
49 
50  template<class dummy_t>
51  static constexpr T check(short) noexcept
52  {
53  return Start;
54  }
55 
56 public:
57  template<class dummy_t = dummy, T Value = check<dummy_t>(0)>
58  static constexpr T test_and_set() noexcept
59  {
60  writer<Value && 0> tmp {};
61  (void)tmp;
62  return Value;
63  }
64 
65  template<class dummy_t = dummy, T Value = check<dummy_t>(0)>
66  static constexpr T test() noexcept
67  {
68  return Value;
69  }
70 };
71 
72 } // namespace qx
Constexpr flag class.