Rogue Wave banner
Previous fileTop of documentContentsIndexNext file

binary_negate


Function Object

Summary

A function object that returns the complement of the result of its binary predicate.

Data Type and Member Function Indexes
(exclusive of constructors and destructors)

Synopsis

#include <functional>
template<class Predicate>
class binary_negate ;

Description

binary_negate is a function object class with a return type for the function adaptor not2. not2 is a function adaptor, known as a negator, that takes a binary predicate function object as its argument and returns a binary predicate function object that is the complement of the original.

Note that not2 works only with function objects that are defined as subclasses of the class binary_function.

Interface

Constructors

explicit binary_negate(const Predicate& pred);

Operators

bool 
operator()(const first_argument_type& x,
           const second_argument_type& y) const;

See Also

binary_function, not2, unary_negate



Previous fileTop of documentContentsIndexNext file
©Copyright 1998, Rogue Wave Software, Inc.
Send mail to report errors or comment on the documentation.
OEM Release, June 1998