aboutsummaryrefslogtreecommitdiff
path: root/src/list/operation/concatenate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/list/operation/concatenate.h')
-rw-r--r--src/list/operation/concatenate.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/list/operation/concatenate.h b/src/list/operation/concatenate.h
deleted file mode 100644
index 21eb1ee..0000000
--- a/src/list/operation/concatenate.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef TYPEASVALUE_SRC_LIST_OPERATION_CONCATENATE_H_
-#define TYPEASVALUE_SRC_LIST_OPERATION_CONCATENATE_H_
-
-namespace tav {
-
-template <
- typename Primary,
- typename Secondary
->
-struct Concatenate {
- typedef Cons<
- Head<Primary>,
- typename Concatenate<
- Tail<Primary>,
- Secondary
- >::type
- > type;
-};
-
-template <typename Secondary>
-struct Concatenate<void, Secondary> {
- typedef Secondary type;
-};
-
-}
-
-#endif // TYPEASVALUE_SRC_LIST_OPERATION_CONCATENATE_H_