binary_negate, not2 |
A binary function object that
returns the logical negation of executing its binary predicate. With the
associated adapter function not2() , you can
conveniently construct a binary_negate object
directly from a predicate.
#include <functional>
template< class Predicate >
class binary_negate : public binary_function
<
typename Predicate::first_argument_type,
typename Predicate::second_argument_type,
bool
>
( x ,
y )Copyright©1994-2026 Recursion Software LLC
All Rights Reserved - For use by licensed users only.