An open API service indexing awesome lists of open source software.

https://github.com/eyelash/mp11

C++11 metaprogramming library
https://github.com/eyelash/mp11

cpp cpp11 library metaprogramming

Last synced: 11 months ago
JSON representation

C++11 metaprogramming library

Awesome Lists containing this project

README

          

# mp11

`mp11` is a C++11 metaprogramming library.

| `mp11` | C++ `std` |
|-----------------|---------------------------------|
| `mp11::Type` | `std::type_identity` (C++20) |
| `mp11::Value` | `std::integral_constant` |
| `mp11::Types` | - |
| `mp11::Values` | `std::integer_sequence` (C++14) |
| `mp11::Index` | - |
| `mp11::Int` | - |
| `mp11::Bool` | `std::bool_constant` (C++17) |
| `mp11::False` | `std::false_type` |
| `mp11::True` | `std::true_type` |
| `mp11::Indices` | `std::index_sequence` (C++14) |
| `mp11::Ints` | - |