CNL  2.0.2 (development)
Compositional Numeric Library
literals.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_LITERALS_H)
8 #define CNL_IMPL_WIDE_INTEGER_LITERALS_H
9 
10 #include "../num_traits/rep_of.h"
11 #include "../parse.h"
12 #include "custom_operator.h"
13 #include "definition.h"
14 
16 namespace cnl {
17  namespace literals {
18  // cnl::_impl::operator "" _wide()
19  template<char... Chars>
20  [[nodiscard]] constexpr auto operator"" _wide()
21  {
22  return _impl::parse<wide_integer<0>, Chars...>();
23  }
24  }
25 }
26 
27 #endif // CNL_IMPL_WIDE_INTEGER_LITERALS_H
cnl
compositional numeric library
Definition: abort.h:15