├── .clang-format ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── tests.cpp └── typelist.hpp /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipk/cpp-typelist/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | CMakeLists.txt.user 2 | build 3 | *.swp 4 | *.autosave 5 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipk/cpp-typelist/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipk/cpp-typelist/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipk/cpp-typelist/HEAD/README.md -------------------------------------------------------------------------------- /tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipk/cpp-typelist/HEAD/tests.cpp -------------------------------------------------------------------------------- /typelist.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lipk/cpp-typelist/HEAD/typelist.hpp --------------------------------------------------------------------------------