aboutsummaryrefslogtreecommitdiff
path: root/src/list/operation/concatenate.h
blob: 944470b66e8cad6ce36dd833ce58e0cbee865569 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef TYPEASVALUE_SRC_LIST_OPERATION_CONCATENATE_H_
#define TYPEASVALUE_SRC_LIST_OPERATION_CONCATENATE_H_

#include "append.h"
#include "higher/fold.h"

namespace tav {

template <typename ListOfLists>
using Concatenate = Fold<
	Append,
	void,
	ListOfLists
>;

}

#endif // TYPEASVALUE_SRC_LIST_OPERATION_CONCATENATE_H_