7 #if !defined(CNL_IMPL_ELASTIC_INTEGER_NUMERIC_LIMITS_H)
8 #define CNL_IMPL_ELASTIC_INTEGER_NUMERIC_LIMITS_H
10 #include "../limits/lowest.h"
11 #include "../num_traits/rep_of.h"
12 #include "../numbers/signedness.h"
13 #include "definition.h"
19 template<
int Digits,
class Narrowest>
20 struct numeric_limits<
cnl::
elastic_integer<Digits, Narrowest>> : numeric_limits<Narrowest> {
24 using rep = cnl::_impl::rep_of_t<value_type>;
25 using rep_numeric_limits = numeric_limits<rep>;
27 [[nodiscard]]
static constexpr
auto rep_max() noexcept
29 return static_cast<rep
>(
30 rep_numeric_limits::max() >> (rep_numeric_limits::digits - digits));
35 static constexpr
int digits = Digits;
37 [[nodiscard]]
static constexpr
auto min() noexcept
42 [[nodiscard]]
static constexpr
auto max() noexcept
44 return value_type{rep_max()};
47 [[nodiscard]]
static constexpr
auto lowest() noexcept
49 return value_type{cnl::_impl::lowest<rep, cnl::numbers::signedness_v<Narrowest>>()(rep_max())};
53 template<
int Digits,
class Narrowest>
55 : numeric_limits<cnl::elastic_integer<Digits, Narrowest>> {
59 #endif // CNL_IMPL_ELASTIC_INTEGER_NUMERIC_LIMITS_H