feat(templates): add TTuple and the corresponding testing

This commit is contained in:
2022-03-31 09:39:30 +08:00
parent fd0bebd7be
commit d8a4908a88
5 changed files with 1007 additions and 0 deletions

View File

@ -92,6 +92,14 @@ constexpr T* AddressOf(T& Object)
return &Object;
}
struct FIgnore
{
template <typename T>
constexpr void operator=(T&&) const { }
};
inline constexpr FIgnore Ignore;
NAMESPACE_MODULE_END(Utility)
NAMESPACE_MODULE_END(Redcraft)
NAMESPACE_REDCRAFT_END