diff options
Diffstat (limited to 'src/development/c++.md')
-rw-r--r-- | src/development/c++.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/development/c++.md b/src/development/c++.md index 1cc4003..e6fcfef 100644 --- a/src/development/c++.md +++ b/src/development/c++.md @@ -34,6 +34,15 @@ available traits an operation can have: {{#include c++/meta2.cc:3:}} ``` +## Example: Minimal templatized test registry + +A small test function registry bringing together a few different template +features. + +```cpp +{{#include c++/meta4.cc:3:}} +``` + ## Example: Concepts pre c++20 Prior to c++20's concepts, `SFINAE` and `std::void_t` can be leveraged to build |