Files Classes Functions Hierarchy
#include <functionalobjectoperators.h>
Public Member Functions | |
| mynot2object (F const &f_) | |
| Pass in the binary operator. | |
| template<typename T > | |
| boolc | operator() (T const &p1, T const &p2) |
| Binary operator being negated. | |
Public Attributes | |
| F | f |
Definition at line 24 of file functionalobjectoperators.h.
| mynot2object< F >::mynot2object | ( | F const & | f_ | ) | [inline] |
Pass in the binary operator.
Definition at line 30 of file functionalobjectoperators.h.
00031 : f(f_) {}
| boolc mynot2object< F >::operator() | ( | T const & | p1, | |
| T const & | p2 | |||
| ) | [inline] |
Binary operator being negated.
Definition at line 35 of file functionalobjectoperators.h.
References mynot2object< F >::f.
00036 { return !f(p1,p2); }
| F mynot2object< F >::f |
Definition at line 27 of file functionalobjectoperators.h.
Referenced by mynot2object< F >::operator()().
1.5.8