CNL  2.0.2 (development)
Compositional Numeric Library
from_rep.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_SCALED_INTEGER_FROM_REP_H)
8 #define CNL_IMPL_SCALED_INTEGER_FROM_REP_H
9 
10 #include "../num_traits/from_rep.h"
11 #include "../wrapper/declaration.h"
12 #include "definition.h"
13 
15 namespace cnl {
21  template<typename ArchetypeRep, int Exponent, int Radix, typename Rep>
22  struct from_rep<scaled_integer<ArchetypeRep, power<Exponent, Radix>>, Rep> {
23  using result_type =
24  _impl::set_rep_t<scaled_integer<ArchetypeRep, power<Exponent, Radix>>, Rep>;
26  [[nodiscard]] constexpr auto operator()(Rep const& r) const -> result_type
27  {
28  return result_type(r, 0);
29  }
30  };
31 }
32 
33 #endif // CNL_IMPL_SCALED_INTEGER_FROM_REP_H
cnl::from_rep< scaled_integer< ArchetypeRep, power< Exponent, Radix > >, Rep >::operator()
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
cnl::from_rep
generic function object that returns the number encapsulating a given value
Definition: from_rep.h:21
cnl
compositional numeric library
Definition: abort.h:15
cnl::scaled_integer
_impl::wrapper< Rep, Scale > scaled_integer
literal real number approximation that uses fixed-point arithmetic
Definition: definition.h:52
cnl::power
tag representing the scaling of an integer by a fixed factor
Definition: declaration.h:13