7 #if !defined(CNL_IMPL_WRAPPER_NUMERIC_LIMITS_H)
8 #define CNL_IMPL_WRAPPER_NUMERIC_LIMITS_H
10 #include "../custom_operator/tag.h"
11 #include "definition.h"
18 template<
typename Rep, cnl::tag Tag>
19 struct numeric_limits<
cnl::_impl::wrapper<Rep, Tag>> : numeric_limits<Rep> {
21 using value_type = cnl::_impl::wrapper<Rep, Tag>;
22 using rep_numeric_limits = numeric_limits<Rep>;
25 [[nodiscard]]
static constexpr
auto min() noexcept
27 return cnl::_impl::from_rep<value_type>(rep_numeric_limits::min());
30 [[nodiscard]]
static constexpr
auto max() noexcept
32 return cnl::_impl::from_rep<value_type>(rep_numeric_limits::max());
35 [[nodiscard]]
static constexpr
auto lowest() noexcept
37 return cnl::_impl::from_rep<value_type>(rep_numeric_limits::lowest());
40 [[nodiscard]]
static constexpr
auto epsilon() noexcept
42 return cnl::_impl::from_rep<value_type>(rep_numeric_limits::round_error());
45 [[nodiscard]]
static constexpr
auto round_error() noexcept
47 return static_cast<value_type
>(rep_numeric_limits::round_error());
50 [[nodiscard]]
static constexpr
auto infinity() noexcept
52 return static_cast<value_type
>(rep_numeric_limits::infinity());
55 [[nodiscard]]
static constexpr
auto
58 return static_cast<value_type
>(rep_numeric_limits::quiet_NaN());
61 [[nodiscard]]
static constexpr
auto
64 return static_cast<value_type
>(rep_numeric_limits::signaling_NaN());
67 [[nodiscard]]
static constexpr
auto denorm_min() noexcept
69 return static_cast<value_type
>(rep_numeric_limits::denorm_min());
73 template<
typename Rep, cnl::tag Tag>
74 struct numeric_limits<
cnl::_impl::wrapper<Rep, Tag> const> : numeric_limits<cnl::_impl::wrapper<Rep, Tag>> {
78 #endif // CNL_IMPL_WRAPPER_NUMERIC_LIMITS_H