7 #if !defined(CNL_IMPL_FRACTION_TO_STRING_H)
8 #define CNL_IMPL_FRACTION_TO_STRING_H
10 #include "definition.h"
12 #include "make_fraction.h"
22 template<
typename N,
typename D>
25 auto const numerator_string =
to_string(f.numerator);
26 auto const denominator_string =
to_string(f.denominator);
28 auto const total_length = numerator_string.length() + 1 + denominator_string.length();
30 fraction_string.
reserve(total_length);
32 fraction_string = numerator_string;
34 fraction_string += denominator_string;
35 return fraction_string;
40 #endif // CNL_IMPL_FRACTION_TO_STRING_H