aboutsummaryrefslogtreecommitdiff
path: root/src/list/operation/higher/misc.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/list/operation/higher/misc.h')
-rw-r--r--src/list/operation/higher/misc.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/list/operation/higher/misc.h b/src/list/operation/higher/misc.h
index 95a5f50..1eacaaa 100644
--- a/src/list/operation/higher/misc.h
+++ b/src/list/operation/higher/misc.h
@@ -2,7 +2,6 @@
#define TYPEASVALUE_SRC_LIST_OPERATION_HIGHER_MISC_H_
#include "fold.h"
-#include "list/operation/concatenate.h"
#include "conditional/if.h"
namespace tav {
@@ -49,25 +48,6 @@ class Filter {
};
-template <typename List>
-class Reverse {
- private:
- template <
- typename Current,
- typename Previous
- >
- struct reversed_concatenate {
- typedef typename Concatenate<
- Previous,
- Cons<Current, void>
- >::type type;
- };
-
- public:
- typedef typename Fold<reversed_concatenate, void, List>::type type;
-
-};
-
}
#endif // TYPEASVALUE_SRC_LIST_OPERATION_HIGHER_MISC_H_