7 #if !defined(CNL_IMPL_WRAPPER_DEFINITION_H)
8 #define CNL_IMPL_WRAPPER_DEFINITION_H
12 #include "../custom_operator/definition.h"
13 #include "../custom_operator/tagged.h"
14 #include "../num_traits/from_value.h"
15 #include "can_convert_tag_family.h"
16 #include "declaration.h"
18 #include "is_wrapper.h"
26 template<
integer Rep, tag Tag>
33 constexpr wrapper(Rep r,
int)
40 template<
typename RhsRep, tag RhsTag>
41 requires can_convert_tag_family<Tag, RhsTag>::value
43 constexpr wrapper(wrapper<RhsRep, RhsTag>
const& i)
44 : _rep(convert<Tag, Rep, RhsTag>{}(to_rep(i)))
49 template<_impl::any_wrapper Number>
50 requires(!can_convert_tag_family<Tag, tag_of_t<Number>>::value)
52 constexpr wrapper(Number
const& i)
53 : _rep(convert<Tag, Rep, _impl::native_tag>{}(i))
59 requires(!is_wrapper<S>)
61 constexpr wrapper(S
const& s)
62 : _rep(convert<Tag, Rep, _impl::native_tag>{}(s))
68 requires(!is_wrapper<S>)
69 [[nodiscard]] constexpr
explicit
72 return convert<_impl::native_tag, S, Tag>{}(_rep);
75 [[nodiscard]]
explicit constexpr
operator bool()
const
77 return static_cast<bool>(_rep);
83 template<
typename,
typename>
92 #endif // CNL_IMPL_WRAPPER_DEFINITION_H