CNL
2.0.2 (development)
Compositional Numeric Library
adopt_digits.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_NUM_TRAITS_ADOPT_DIGITS_H)
8
#define CNL_IMPL_NUM_TRAITS_ADOPT_DIGITS_H
9
10
#include "../../cstdint.h"
11
#include "digits.h"
12
#include "set_digits.h"
13
14
namespace
cnl
{
15
namespace
_impl {
16
template
<
typename
Mimic,
typename
Source>
17
struct
adopt_digits : set_digits<Mimic, digits_v<Source>> {
18
};
19
20
template
<
typename
Mimic,
typename
Source>
21
using
adopt_digits_t =
typename
adopt_digits<Mimic, Source>::type;
22
}
23
}
24
25
#endif // CNL_IMPL_NUM_TRAITS_ADOPT_DIGITS_H
cnl
compositional numeric library
Definition:
abort.h:15
cnl
_impl
num_traits
adopt_digits.h
Generated by
1.8.17