refactor(*): move container and iterator tools to miscellaneous

This commit is contained in:
2024-12-05 16:38:49 +08:00
parent 9d901df68a
commit 7525c9a5dd
14 changed files with 19 additions and 21 deletions

View File

@ -2,15 +2,15 @@
#include "CoreTypes.h"
#include "Templates/Utility.h"
#include "Templates/Container.h"
#include "TypeTraits/TypeTraits.h"
#include "Miscellaneous/Container.h"
NAMESPACE_REDCRAFT_BEGIN
NAMESPACE_MODULE_BEGIN(Redcraft)
NAMESPACE_MODULE_BEGIN(Utility)
template <typename T, T... Ints>
struct TIntegerSequence
struct TIntegerSequence
{
using ValueType = T;
FORCEINLINE static constexpr size_t Num() { return sizeof...(Ints); }