Skip to content

Instantly share code, notes, and snippets.

View Robbepop's full-sized avatar
🐣

Robin Freyler Robbepop

🐣
  • Berlin
View GitHub Profile
@Robbepop
Robbepop / print_counted.cpp
Created June 10, 2015 02:52
Variadic Templates playground
#include <iostream>
template<typename T>
void print_counted_acc(size_t acc, T head) {
std::cout << acc << ' ' << head << '\n';
}
template<typename T, typename... Args>
void print_counted_acc(size_t acc, T head, Args... tail) {
std::cout << acc << ' ' << head << '\n';