Modernes C++ programmieren

Okt 23, 2024

lst-0683-book.cpp

// https://godbolt.org/z/KvsGh4f1v 
namespace lits {
  // Templatehilfsfunktion für ein Argument
  template<char C> int bin() {  // allgemeiner Fall
    if constexpr (C=='0') return 0;
    else if constexpr (C=='1') return 1;
  }
  // Templatehilfsfunktion ab zwei Argumente
  // 
}