CNL  2.0.2 (development)
Compositional Numeric Library
ostream.h
1 
2 // Copyright John McFarlane 2021.
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_WRAPPER_OSTREAM_H)
8 #define CNL_IMPL_WRAPPER_OSTREAM_H
9 
10 #include "../config.h"
11 #include "../custom_operator/tag.h"
12 #include "../ostream.h"
13 #include "is_wrapper.h"
14 #include "to_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<any_wrapper N>
25  auto& operator<<(std::ostream& o, N const& i)
26  {
27  return o << to_rep(i);
28  }
29 #endif
30  }
31 }
32 
33 #endif // CNL_IMPL_WRAPPER_OSTREAM_H
std::ostream
STL class.
cnl
compositional numeric library
Definition: abort.h:15