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

#include "length.h"
#include "section.h"

namespace tav {

template <
	typename Count,
	typename List
>
using Drop = Section<
	Count,
	Substract<Length<List>, Size<1>>,
	List
>;

}

#endif  // TYPEASVALUE_SRC_LIST_OPERATION_DROP_H_