First commit
[cpp_sandbox.git] / Sandbox / Traits.h
1 #pragma once
2
3 /*
4 Type traits: conditional compilation based on generic type properties. Subset of template metaprogramming.
5
6 From: https://www.internalpointers.com/post/quick-primer-type-traits-modern-cpp
7 */
8
9 namespace Traits
10 {
11 void tests();
12 }