CNL
2.0.2 (development)
Compositional Numeric Library
|
7 #if !defined(CNL_IMPL_SCALED_INTEGER_FROM_REP_H)
8 #define CNL_IMPL_SCALED_INTEGER_FROM_REP_H
10 #include "../num_traits/from_rep.h"
11 #include "../wrapper/declaration.h"
12 #include "definition.h"
21 template<
typename ArchetypeRep,
int Exponent,
int Radix,
typename Rep>
24 _impl::set_rep_t<scaled_integer<ArchetypeRep, power<Exponent, Radix>>, Rep>;
26 [[nodiscard]] constexpr
auto operator()(Rep
const& r)
const -> result_type
28 return result_type(r, 0);
33 #endif // CNL_IMPL_SCALED_INTEGER_FROM_REP_H
constexpr auto operator()(Rep const &r) const -> result_type
generates a scaled_integer equivalent to r in type and value
Definition: from_rep.h:26
generic function object that returns the number encapsulating a given value
Definition: from_rep.h:21
compositional numeric library
Definition: abort.h:15
_impl::wrapper< Rep, Scale > scaled_integer
literal real number approximation that uses fixed-point arithmetic
Definition: definition.h:52
tag representing the scaling of an integer by a fixed factor
Definition: declaration.h:13