|
| template<class res_type , class arg1_type , class arg2_type , class TFunctor > |
| FunctorRef< TFunctor, res_type, arg1_type, arg2_type > | functorRef (TFunctor &f_r) |
| | Convenience function creating a binary FunctorRef. More...
|
| |
| template<class res_type , class arg1_type , class TFunctor > |
| FunctorRef< TFunctor, res_type, arg1_type > | functorRef (TFunctor &f_r) |
| |
| template<class res_type , class TFunctor > |
| FunctorRef< TFunctor, res_type > | functorRef (TFunctor &f_r) |
| |
| template<class TConst > |
| Constant< TConst > | constant (const TConst &value) |
| |
| True | true_c () |
| | Convenience function for creating a True. More...
|
| |
| False | false_c () |
| | Convenience function for creating a False. More...
|
| |
| template<class TCondition > |
| Not< TCondition > | not_c (TCondition cond_r) |
| | Convenience function for creating a Not from TCondition. More...
|
| |
| template<class TACondition , class TBCondition > |
| Or< TACondition, TBCondition > | or_c (TACondition conda_r, TBCondition condb_r) |
| | Convenience function for creating a Or from two conditions conda_r OR condb_r. More...
|
| |
| template<class TACondition , class TBCondition > |
| Chain< TACondition, TBCondition > | chain (TACondition conda_r, TBCondition condb_r) |
| | Convenience function for creating a Chain from two conditions conda_r and condb_r. More...
|
| |
| template<class Tp > |
| GetFirst< Tp > | getFirst (Tp &result_r) |
| | Convenience function for creating GetFirst. More...
|
| |
| template<class Tp > |
| GetLast< Tp > | getLast (Tp &result_r) |
| | Convenience function for creating GetLast. More...
|
| |
| template<class TOutputIterator > |
| GetAll< TOutputIterator > | getAll (TOutputIterator result_r) |
| | Convenience function for creating GetAll. More...
|
| |