Skip to content

Instantly share code, notes, and snippets.

@cleoold
cleoold / test.cpp
Last active October 12, 2023 08:51
quicksort in C++ template metaprogramming
// -std=c++11
// licensed under MIT
// 2020 cos https://opensource.org/licenses/MIT
#include <iostream>
namespace li {
template <int n> struct int32 {
using type = int32;
static constexpr int value = n;
};