CNL  2.0.2 (development)
Compositional Numeric Library
numeric_limits.h
1 
2 // Copyright John McFarlane 2019.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file ../LICENSE_1_0.txt or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 
7 #if !defined(CNL_IMPL_WRAPPER_NUMERIC_LIMITS_H)
8 #define CNL_IMPL_WRAPPER_NUMERIC_LIMITS_H
9 
10 #include "../custom_operator/tag.h"
11 #include "definition.h"
12 #include "from_rep.h"
13 
14 #include <limits>
15 
17 namespace std {
18  template<typename Rep, cnl::tag Tag>
19  struct numeric_limits<cnl::_impl::wrapper<Rep, Tag>> : numeric_limits<Rep> {
20  private:
21  using value_type = cnl::_impl::wrapper<Rep, Tag>;
22  using rep_numeric_limits = numeric_limits<Rep>;
23 
24  public:
25  [[nodiscard]] static constexpr auto min() noexcept
26  {
27  return cnl::_impl::from_rep<value_type>(rep_numeric_limits::min());
28  }
29 
30  [[nodiscard]] static constexpr auto max() noexcept
31  {
32  return cnl::_impl::from_rep<value_type>(rep_numeric_limits::max());
33  }
34 
35  [[nodiscard]] static constexpr auto lowest() noexcept
36  {
37  return cnl::_impl::from_rep<value_type>(rep_numeric_limits::lowest());
38  }
39 
40  [[nodiscard]] static constexpr auto epsilon() noexcept
41  {
42  return cnl::_impl::from_rep<value_type>(rep_numeric_limits::round_error());
43  }
44 
45  [[nodiscard]] static constexpr auto round_error() noexcept
46  {
47  return static_cast<value_type>(rep_numeric_limits::round_error());
48  }
49 
50  [[nodiscard]] static constexpr auto infinity() noexcept
51  {
52  return static_cast<value_type>(rep_numeric_limits::infinity());
53  }
54 
55  [[nodiscard]] static constexpr auto
56  quiet_NaN() noexcept // NOLINT(readability-identifier-naming)
57  {
58  return static_cast<value_type>(rep_numeric_limits::quiet_NaN());
59  }
60 
61  [[nodiscard]] static constexpr auto
62  signaling_NaN() noexcept // NOLINT(readability-identifier-naming)
63  {
64  return static_cast<value_type>(rep_numeric_limits::signaling_NaN());
65  }
66 
67  [[nodiscard]] static constexpr auto denorm_min() noexcept
68  {
69  return static_cast<value_type>(rep_numeric_limits::denorm_min());
70  }
71  };
72 
73  template<typename Rep, cnl::tag Tag>
74  struct numeric_limits<cnl::_impl::wrapper<Rep, Tag> const> : numeric_limits<cnl::_impl::wrapper<Rep, Tag>> {
75  };
76 }
77 
78 #endif // CNL_IMPL_WRAPPER_NUMERIC_LIMITS_H
std::numeric_limits::quiet_NaN
T quiet_NaN(T... args)
std::numeric_limits::lowest
T lowest(T... args)
std::numeric_limits::infinity
T infinity(T... args)
std::numeric_limits::round_error
T round_error(T... args)
cnl
compositional numeric library
Definition: abort.h:15
std::numeric_limits::signaling_NaN
T signaling_NaN(T... args)
std::numeric_limits::epsilon
T epsilon(T... args)
std::numeric_limits::min
T min(T... args)
std
STL namespace.
std::numeric_limits::denorm_min
T denorm_min(T... args)
std::numeric_limits::max
T max(T... args)