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_DUPLEX_INTEGER_NUMERIC_LIMITS_H)
8 #define CNL_IMPL_DUPLEX_INTEGER_NUMERIC_LIMITS_H
9 
10 #include "../num_traits/from_rep.h"
11 #include "ctors.h"
12 #include "declaration.h"
13 
14 #include <limits>
15 
17 namespace std {
18  template<typename Upper, typename Lower>
19  struct numeric_limits<cnl::_impl::duplex_integer<Upper, Lower>> : numeric_limits<Upper> {
20  private:
21  using lower_numeric_limits = numeric_limits<Lower>;
22  static_assert(lower_numeric_limits::is_integer);
23 
24  using upper_numeric_limits = numeric_limits<Upper>;
25  static_assert(upper_numeric_limits::is_integer);
26 
27  using value_type = cnl::_impl::duplex_integer<Upper, Lower>;
28 
29  public:
30  // standard members
31  static constexpr int digits = lower_numeric_limits::digits + upper_numeric_limits::digits;
32 
33  [[nodiscard]] static constexpr auto lowest() noexcept
34  {
36  }
37 
38  [[nodiscard]] static constexpr auto min() noexcept
39  {
41  }
42 
43  [[nodiscard]] static constexpr auto max() noexcept
44  {
46  }
47  };
48 }
49 
50 #endif // CNL_IMPL_DUPLEX_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.
std::numeric_limits::max
T max(T... args)