aboutsummaryrefslogtreecommitdiff
path: root/src/list/operation/higher/sort.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/list/operation/higher/sort.h')
-rw-r--r--src/list/operation/higher/sort.h8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/list/operation/higher/sort.h b/src/list/operation/higher/sort.h
index a707a15..f9146d6 100644
--- a/src/list/operation/higher/sort.h
+++ b/src/list/operation/higher/sort.h
@@ -2,6 +2,7 @@
#define TYPEASVALUE_SRC_LIST_OPERATION_HIGHER_SORT_H_
#include "list/operation/concatenate.h"
+#include "list/operation/delete_nth.h"
#include "list/operation/higher/partition.h"
#include "function/apply.h"
@@ -16,14 +17,9 @@ class Sort {
using index = Divide<typename Length<Sequence>::type, Size<2>>;
using pivot = typename Nth<index, Sequence>::type;
- using sequence_sans_pivot = typename Append<
- typename Take<index, Sequence>::type,
- typename Drop<Add<index, Size<1>>, Sequence>::type
- >::type;
-
using partitions = typename Partition<
Apply<Comparator, pivot, tav::_0>::template single_type,
- sequence_sans_pivot
+ typename DeleteNth<index, Sequence>::type
>::type;
using lhs = typename Car<partitions>::type;