#ifndef TYPEASVALUE_SRC_LIST_OPERATION_DELETE_H_ #define TYPEASVALUE_SRC_LIST_OPERATION_DELETE_H_ #include "type.h" #include "higher/filter.h" #include "function/apply.h" namespace tav { template < typename Element, typename Sequence > using Delete = Remove< Apply::template function, Sequence >; } #endif // TYPEASVALUE_SRC_LIST_OPERATION_DELETE_H_