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

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

namespace tav {

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

}

#endif // TYPEASVALUE_SRC_LIST_OPERATION_CONCATENATE_H_