#include <functional.h>
Public Member Functions | |
| ExtractSecondFunctor () | |
| This is a very lightweight class. | |
| Type1 | operator() (const std::pair< Type0, Type1 > &argument) |
| This version of the application operator returns the value of the second component of its argument. | |
| Type1 & | operator() (std::pair< Type0, Type1 > &argument) |
| This version of the application operator returns a reference to the second component of its argument. | |
Definition at line 218 of file functional.h.
| dlr::common::ExtractSecondFunctor< Type0, Type1 >::ExtractSecondFunctor | ( | ) | [inline] |
This is a very lightweight class.
The constructor does nothing.
Definition at line 225 of file functional.h.
| Type1& dlr::common::ExtractSecondFunctor< Type0, Type1 >::operator() | ( | std::pair< Type0, Type1 > & | argument | ) | [inline] |
This version of the application operator returns a reference to the second component of its argument.
| argument | This argument is a std::pair instance. |
Definition at line 251 of file functional.h.
| Type1 dlr::common::ExtractSecondFunctor< Type0, Type1 >::operator() | ( | const std::pair< Type0, Type1 > & | argument | ) | [inline] |
This version of the application operator returns the value of the second component of its argument.
| argument | This argument is a std::pair instance. |
Definition at line 237 of file functional.h.
1.5.8