Main Page | Modules | Namespace List | Class Hierarchy | Class List | File List | Namespace Members | Class Members | File Members | Related Pages
vigra_ext::NestFunctor< F1, F2 > Struct Template Reference
functor to combine two functors: result = f1( f2(v) ) More...
#include <utils.h>
Public Types | |
| typedef F1::result_type | result_type |
| the functor's second argument type | |
Public Member Functions | |
| NestFunctor (const F1 &fu1, const F2 &fu2) | |
| template<class T1> | |
| result_type | operator() (T1 const &v) const |
| template<class T1, class T2> | |
| result_type | operator() (T1 const &v1, T2 const &v2) const |
| if F2 takes 2 arguments | |
| template<class T1, class T2, class T3> | |
| result_type | operator() (T1 const &v1, T2 const &v2, T3 const &v3) const |
| if F2 takes 3 arguments | |
Public Attributes | |
| F1 | f1 |
| F2 | f2 |
Detailed Description
template<class F1, class F2>
struct vigra_ext::NestFunctor< F1, F2 >
functor to combine two functors: result = f1( f2(v) )
The functors are copied, so there is no way to get their internal state after they have been applied.
This is quite useful for multithreaded processing.
Member Typedef Documentation
|
|||||
|
the functor's second argument type
|
Constructor & Destructor Documentation
|
||||||||||||||||
|
|
Member Function Documentation
|
||||||||||||||||||||||||
|
if F2 takes 3 arguments
|
|
||||||||||||||||||||
|
if F2 takes 2 arguments
|
|
||||||||||||||
|
|
Member Data Documentation
|
|||||
|
|
|
|||||
|
|
The documentation for this struct was generated from the following file:
- hugin_base/vigra_ext/utils.h
1.3.9.1