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_ELASTIC_INTEGER_NUMERIC_LIMITS_H)
8 #define CNL_IMPL_ELASTIC_INTEGER_NUMERIC_LIMITS_H
9 
10 #include "../limits/lowest.h"
11 #include "../num_traits/rep_of.h"
12 #include "../numbers/signedness.h"
13 #include "definition.h"
14 
15 #include <limits>
16 
18 namespace std {
19  template<int Digits, class Narrowest>
20  struct numeric_limits<cnl::elastic_integer<Digits, Narrowest>> : numeric_limits<Narrowest> {
21  private:
22  // elastic integer-specific helpers
23  using value_type = cnl::elastic_integer<Digits, Narrowest>;
24  using rep = cnl::_impl::rep_of_t<value_type>;
25  using rep_numeric_limits = numeric_limits<rep>;
26 
27  [[nodiscard]] static constexpr auto rep_max() noexcept
28  {
29  return static_cast<rep>(
30  rep_numeric_limits::max() >> (rep_numeric_limits::digits - digits));
31  }
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{rep_max()};
45  }
46 
47  [[nodiscard]] static constexpr auto lowest() noexcept
48  {
49  return value_type{cnl::_impl::lowest<rep, cnl::numbers::signedness_v<Narrowest>>()(rep_max())};
50  }
51  };
52 
53  template<int Digits, class Narrowest>
54  struct numeric_limits<cnl::elastic_integer<Digits, Narrowest> const>
55  : numeric_limits<cnl::elastic_integer<Digits, Narrowest>> {
56  };
57 }
58 
59 #endif // CNL_IMPL_ELASTIC_INTEGER_NUMERIC_LIMITS_H
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.
cnl::elastic_integer
_impl::wrapper< typename elastic_tag< Digits, Narrowest >::rep, elastic_tag< Digits, Narrowest > > elastic_integer
An integer type with auto-widening operators.
Definition: definition.h:39
std::numeric_limits::max
T max(T... args)