#ifndef TYPEASVALUE_SRC_LIST_OPERATION_DELETE_NTH_H_ #define TYPEASVALUE_SRC_LIST_OPERATION_DELETE_NTH_H_ #include "list/operation/append.h" #include "list/operation/take.h" #include "list/operation/drop.h" namespace tav { template < typename Index, typename List > using DeleteNth = Append< Take, Drop>, List> >; } #endif // TYPEASVALUE_SRC_LIST_OPERATION_DELETE_NTH_H_