mirror of
https://github.com/Milxnor/Project-Reboot-3.0.git
synced 2026-01-13 02:42:22 +01:00
14 lines
243 B
C++
14 lines
243 B
C++
#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));
|
|
}
|
|
} |