Skip to content

Instantly share code, notes, and snippets.

View richelbilderbeek's full-sized avatar
🦖
Eating code for breakfast

Richèl Bilderbeek richelbilderbeek

🦖
Eating code for breakfast
View GitHub Profile
#include <array>
#include <functional>
template <typename... T>
using common_type_t = typename std::common_type<T...>::type;
template <typename T>
using remove_cv_t = typename std::remove_cv<T>::type;
template <bool, typename T, typename... U>