https://github.com/jackson-nestelroad/template-metaprogramming-cpp
Code examples for learning about Template Metaprogramming in C++.
https://github.com/jackson-nestelroad/template-metaprogramming-cpp
cpp examples template-metaprogramming
Last synced: 7 months ago
JSON representation
Code examples for learning about Template Metaprogramming in C++.
- Host: GitHub
- URL: https://github.com/jackson-nestelroad/template-metaprogramming-cpp
- Owner: jackson-nestelroad
- Created: 2020-02-10T04:30:57.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-29T23:04:45.000Z (about 5 years ago)
- Last Synced: 2025-01-29T09:20:09.581Z (8 months ago)
- Topics: cpp, examples, template-metaprogramming
- Language: C++
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Template Metaprogramming C++
This repository features several code examples for learning about Template Metaprogramming in C++. These were prepared for my presentation on the topic given at The University of Texas at Dallas on February 13, 2020.## Topics
1. Templates
2. Compile-time Calculation
3. Type Introspection
4. Big Examples
5. Concepts (C++20)