11 template<std::
integral UInt>
14 template<std::
unsigned_
integral UInt>
15 requires (
sizeof(UInt) == 1)
20 template<std::
unsigned_
integral UInt>
21 requires (
sizeof(UInt) == 2)
23 using type = uint_fast16_t;
26 template<std::
unsigned_
integral UInt>
27 requires (
sizeof(UInt) == 4)
29 using type = uint_fast32_t;
32 template<std::
unsigned_
integral UInt>
33 requires (
sizeof(UInt) == 8)
35 using type = uint_fast64_t;
41 template<std::
signed_
integral SInt>
42 requires (
sizeof(SInt) == 1)
47 template<std::
signed_
integral SInt>
48 requires (
sizeof(SInt) == 2)
53 template<std::
signed_
integral SInt>
54 requires (
sizeof(SInt) == 4)
59 template<std::
signed_
integral SInt>
60 requires (
sizeof(SInt) == 8)
Definition Duration.hpp:17
int_fast8_t type
Definition type_traits.hpp:44
uint_fast8_t type
Definition type_traits.hpp:17
Definition type_traits.hpp:12