CNL
2.0.2 (development)
Compositional Numeric Library
ostream.h
1
2
// Copyright John McFarlane 2019.
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_OSTREAM_H)
8
#define CNL_IMPL_OSTREAM_H
9
10
#include "../cstdint.h"
11
#include "charconv/to_chars.h"
12
#include "
config.h
"
13
14
#include <array>
15
#if defined(CNL_IOSTREAMS_ENABLED)
16
#include <ostream>
17
#endif
18
20
namespace
cnl
{
21
namespace
_impl {
22
#if defined(CNL_INT128_ENABLED) && defined(CNL_IOSTREAMS_ENABLED)
23
inline
auto
& operator<<(
std::ostream
& out, int128_t
const
n)
26
{
27
return
out << cnl::to_chars_static(n).chars.data();
28
}
29
32
inline
auto
& operator<<(
std::ostream
& out, uint128_t
const
n)
33
{
34
return
out << cnl::to_chars_static(n).chars.data();
35
}
36
#endif
37
}
38
39
using
_impl::operator<<;
40
}
41
42
#endif // CNL_IMPL_OSTREAM_H
std::ostream
STL class.
cnl
compositional numeric library
Definition:
abort.h:15
config.h
definitions which can be used to configure CNL library
cnl
_impl
ostream.h
Generated by
1.8.17