lst-0650-book.cpp
if constexpr std::integral<T> {
// T ist ein integraler Typ
} else if constexpr std::floating_point<T> {
// T ist ein Gleitkommatyp
} else {
// T ist weder noch
}
if constexpr std::integral<T> {
// T ist ein integraler Typ
} else if constexpr std::floating_point<T> {
// T ist ein Gleitkommatyp
} else {
// T ist weder noch
}