aboutsummaryrefslogtreecommitdiff
path: root/src/list/operation/higher/partition.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/list/operation/higher/partition.h')
-rw-r--r--src/list/operation/higher/partition.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/list/operation/higher/partition.h b/src/list/operation/higher/partition.h
index eedeb91..ee49fcc 100644
--- a/src/list/operation/higher/partition.h
+++ b/src/list/operation/higher/partition.h
@@ -2,6 +2,7 @@
#define TYPEASVALUE_SRC_LIST_OPERATION_HIGHER_PARTITION_H_
#include "filter.h"
+#include "remove.h"
namespace tav {
@@ -10,8 +11,8 @@ template <
typename Elements
>
using Partition = Cons<
- Eval<Filter<Predicate, Elements>>,
- Eval<Remove<Predicate, Elements>>
+ Filter<Predicate, Elements>,
+ Remove<Predicate, Elements>
>;
}