CNL  2.0.2 (development)
Compositional Numeric Library
to_string.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_FRACTION_TO_STRING_H)
8 #define CNL_IMPL_FRACTION_TO_STRING_H
9 
10 #include "definition.h"
11 #include "gcd.h"
12 #include "make_fraction.h"
13 
14 #include <string>
15 
17 namespace cnl {
18  namespace _impl {
19  // cnl::fraction free functions
20  using std::to_string;
21 
22  template<typename N, typename D>
23  auto to_string(fraction<N, D> const& f)
24  {
25  auto const numerator_string = to_string(f.numerator);
26  auto const denominator_string = to_string(f.denominator);
27 
28  auto const total_length = numerator_string.length() + 1 + denominator_string.length();
29  std::string fraction_string;
30  fraction_string.reserve(total_length);
31 
32  fraction_string = numerator_string;
33  fraction_string.push_back('/');
34  fraction_string += denominator_string;
35  return fraction_string;
36  }
37  }
38 }
39 
40 #endif // CNL_IMPL_FRACTION_TO_STRING_H
std::string
STL class.
std::string::reserve
T reserve(T... args)
std::string::push_back
T push_back(T... args)
std::to_string
T to_string(T... args)
cnl
compositional numeric library
Definition: abort.h:15