Files Classes Functions Hierarchy
#include <typedefs.h>
Go to the source code of this file.
Classes | |
| class | mynot2object< F > |
| Negate a binary operator. More... | |
| class | mycomparexobject< F > |
| class | mycompareyobject< F > |
| class | mycomparezobject< F > |
Functions | |
| template<typename F > | |
| mynot2object< F > | mynot2 (F const &f_) |
| template<typename F > | |
| mycomparexobject< F > | mycomparex (F const &f_) |
| template<typename F > | |
| mycompareyobject< F > | mycomparey (F const &f_) |
| template<typename F > | |
| mycomparezobject< F > | mycomparez (F const &f_) |
| mycomparexobject<F> mycomparex | ( | F const & | f_ | ) | [inline] |
Definition at line 69 of file functionalobjectoperators.h.
00070 { 00071 return mycomparexobject<F>(f_); 00072 }
| mycompareyobject<F> mycomparey | ( | F const & | f_ | ) | [inline] |
Definition at line 98 of file functionalobjectoperators.h.
00099 { 00100 return mycompareyobject<F>(f_); 00101 }
| mycomparezobject<F> mycomparez | ( | F const & | f_ | ) | [inline] |
Definition at line 126 of file functionalobjectoperators.h.
00127 { 00128 return mycomparezobject<F>(f_); 00129 }
| mynot2object<F> mynot2 | ( | F const & | f_ | ) | [inline] |
Definition at line 40 of file functionalobjectoperators.h.
Referenced by snakesort::d1(), and d2sortvec< T, CX, CY >::eval().
00041 { 00042 return mynot2object<F>(f_); 00043 }
1.5.8