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