NeatReflection
NeatReflection copied to clipboard
Partial template specialization support to CodeGenerator
Take the following example:
template<typename T> IsVector { static constexpr bool value = false; };
template<typename T> IsVector<std::vector<T>> { static constexpr bool value = true; };