std::unary_negate (3) Linux Manual Page
std::unary_negate – std::unary_negate Synopsis Defined in header <functional> template< class Predicate > (until C++11) struct unary_negate : public std::unary_function<Predicate::argument_type, bool>; template< class Predicate > (since C++11) struct unary_negate; (deprecated in C++17) (removed in C++20) unary_negate is a wrapper function object returning the complement of the unary predicate it holds. The unary predicate type must define…
