CNL  2.0.2 (development)
Compositional Numeric Library
numeric_limits.h
1 
2 // Copyright John McFarlane 2018.
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_WIDE_INTEGER_NUMERIC_LIMITS_H)
8 #define CNL_IMPL_WIDE_INTEGER_NUMERIC_LIMITS_H
9 
10 #include "../duplex_integer.h"
11 #include "../limits/lowest.h"
12 #include "../num_traits/rep_of.h"
13 #include "definition.h"
14 #include "from_rep.h"
15 
16 #include <limits>
17 
19 namespace std {
21  // std::numeric_limits specialization for overflow_integer
22 
23  template<int Digits, typename Narrowest>
24  struct numeric_limits<cnl::wide_integer<Digits, Narrowest>>
25  : numeric_limits<cnl::_impl::rep_of_t<cnl::wide_integer<Digits, Narrowest>>> {
26  private:
27  // wide_integer-specific helpers
28  using value_type = cnl::wide_integer<Digits, Narrowest>;
29  using rep = cnl::_impl::rep_of_t<value_type>;
30  using rep_numeric_limits = numeric_limits<rep>;
31  static_assert(rep_numeric_limits::is_integer);
32 
33  public:
34  // standard members
35  static constexpr int digits = Digits;
36 
37  [[nodiscard]] static constexpr auto min() noexcept
38  {
39  return value_type{1};
40  }
41 
42  [[nodiscard]] static constexpr auto max() noexcept
43  {
44  return value_type{
45  rep_numeric_limits::max() >> (rep_numeric_limits::digits - digits)};
46  }
47 
48  [[nodiscard]] static constexpr auto lowest() noexcept
49  {
50  return value_type{
51  rep_numeric_limits::lowest() >> (rep_numeric_limits::digits - digits)};
52  }
53  };
54 
55  template<int Digits, typename Narrowest>
56  struct numeric_limits<cnl::wide_integer<Digits, Narrowest> const>
57  : numeric_limits<cnl::wide_integer<Digits, Narrowest>> {
58  static constexpr bool is_integer = true;
59  };
60 }
61 
62 #endif // CNL_IMPL_WIDE_INTEGER_NUMERIC_LIMITS_H
cnl::wide_integer
_impl::wrapper< typename wide_tag< Digits, Narrowest >::rep, wide_tag< Digits, Narrowest > > wide_integer
An integer of limitless width.
Definition: definition.h:19
std::numeric_limits::lowest
T lowest(T... args)
cnl
compositional numeric library
Definition: abort.h:15
std::numeric_limits::min
T min(T... args)
std
STL namespace.
std::numeric_limits::max
T max(T... args)