CNL  2.0.2 (development)
Compositional Numeric Library
operators.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_WIDE_INTEGER_OPERATORS_H)
8 #define CNL_IMPL_WIDE_INTEGER_OPERATORS_H
9 
10 #include "../config.h"
11 #include "../num_traits/to_rep.h"
12 #include "../ostream.h"
13 #include "definition.h"
14 #include "set_rep.h"
15 
16 #if defined(CNL_IOSTREAMS_ENABLED)
17 #include <ostream>
18 #endif
19 
21 namespace cnl {
22  namespace _impl {
23 #if defined(CNL_IOSTREAMS_ENABLED)
24  template<int Digits, typename Narrowest>
25  auto& operator<<(std::ostream& out, wide_integer<Digits, Narrowest> const& value)
26  {
27  return out << to_rep(value);
28  }
29 #endif
30  }
31 }
32 
33 #endif // CNL_IMPL_WIDE_INTEGER_OPERATORS_H
std::ostream
STL class.
cnl
compositional numeric library
Definition: abort.h:15