C++ Template Metaprogramming
Solutions to the exercises throughout the book
|
Encapsulate solution for Exercise 3-0. More...
Namespaces | |
namespace | cpp20 |
Encapsulate solution for Exercise 3-0 (C++20). | |
Classes | |
struct | checked_binary |
Compile-time binary to decimal number translation. More... | |
struct | checked_binary< 0 > |
Recursion termination. More... | |
Functions | |
consteval uint32_t | checked_binary (uint64_t const N) |
Prepend higher bits to lowest bit. | |
Encapsulate solution for Exercise 3-0.