aboutsummaryrefslogtreecommitdiff
path: root/src/list/operation/reverse.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/list/operation/reverse.h')
-rw-r--r--src/list/operation/reverse.h30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/list/operation/reverse.h b/src/list/operation/reverse.h
new file mode 100644
index 0000000..7a0305c
--- /dev/null
+++ b/src/list/operation/reverse.h
@@ -0,0 +1,30 @@
+#ifndef TYPEASVALUE_SRC_LIST_OPERATION_REVERSE_H_
+#define TYPEASVALUE_SRC_LIST_OPERATION_REVERSE_H_
+
+#include "concatenate.h"
+#include "higher/fold.h"
+
+namespace tav {
+
+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_REVERSE_H_