#ifndef TYPEASVALUE_SRC_LIST_OPERATION_HIGHER_REMOVE_H_ #define TYPEASVALUE_SRC_LIST_OPERATION_HIGHER_REMOVE_H_ #include "filter.h" namespace tav { namespace detail { template class Predicate> struct predicate_negator { template using function = Not>; }; } template < template class Predicate, typename List > using Remove = Filter< detail::predicate_negator::template function, List >; } #endif // TYPEASVALUE_SRC_LIST_OPERATION_HIGHER_REMOVE_H_