Modernes C++ programmieren

Okt 23, 2024

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
}