124 files changed.

This commit is contained in:
Milxnor
2023-04-15 19:53:58 -04:00
parent 63473de425
commit bbf28ed9e9
124 changed files with 60988 additions and 577 deletions

14
Project Reboot 3.0/Sort.h Normal file
View File

@@ -0,0 +1,14 @@
#pragma once
#include "IntroSort.h"
#include "UnrealTemplate.h"
namespace Algo
{
template <typename RangeType, typename PredicateType>
FORCEINLINE void Sort(RangeType& Range, PredicateType Pred)
{
IntroSort(Range, MoveTemp(Pred));
}
}